I'm using tidymodels framework for creating stratified resample folds for cross-validation in a random forest model. Is it possible to actually access and view / plot the data within each of these folds? Reproducible code below:
library(tidyverse)
library(tidymodels)
df_cv <- vfold_cv(iris, v = 10, strata =Species)