cross-validate a mlr3 classification model
mlr3classifiercv(
dfin,
tcols,
nrepeats = 10,
partrate = 0.8,
dup_size = 0,
balancing = "smote",
mylearners = mlr3classifiers(),
subjectIDs = NULL,
verbose = TRUE
)
dataframe input
columns for the prediction task - first is the target outcome
number of subsampling-driven train test runs
partition ratio for the training 0.8 equals 80 percent train 20 test
integer for over/under/smote sampling
string over, under, smote, none are the options
the mlr3 learners over which to search ; defaults to those that support multiclass
unique IDs per subject; aids with repeated measurement data by ensuring subjects exist in uniquely in either train or test
boolean
dataframe quantifying performance