Hi,
I like to make a few nested_cv's based on the same partition configuration as follows:
outer_cv <- 5
inner_cv <- 4
sampling1 <- nested_cv(all_dataset,
outside = group_vfold_cv(v = outer_cv, group = "Rep"),
inside = group_vfold_cv(v = inner_cv, group = "Rep"))
sampling2 <- ...
...
However, I am getting
object 'outer_cv' not found
error, which is out of the scope for the group_vfold_cv function.
Do you have any recommendations? Does tidy evaluation help in this case?
Hi,
I like to make a few
nested_cv's based on the same partition configuration as follows:However, I am getting
error, which is out of the scope for the
group_vfold_cvfunction.Do you have any recommendations? Does tidy evaluation help in this case?