library(tidyverse)
library(tidymodels)
devtools::load_all()
stop()
# experimentation with tidymodels
cv_test <- vfold_cv(mtcars, v = 3L)
split_test <- cv_test$splits[[1L]]
as_tibble(split_test)
cv_test <- vfold_cv(bake(rec_test, mtcars), v = 3L)
split_test <- cv_test$splits[[1L]]
as_tibble(split_test)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.