Description Usage Arguments Value Examples
View source: R/kfold_xval_class.R
k-fold cross-validation is an iterative approach applied to validate models. The samples are divided into k "folds", or subsets. Each subset is excluded from model training and used for model validation once, resulting in a single left-out prediction for each sample. Model performance metrics are then computed for the training and test sets across all folds.
1 | kfold_xval(folds = 10, method = "venetian", factor_name, ...)
|
folds |
(numeric, integer) The number of cross-validation folds. The default is |
method |
(character) Fold selection method. Allowed values are limited to the following:
The default is |
factor_name |
(character) The name of a sample-meta column to use. |
... |
Additional slots and values passed to |
A kfold_xval
object.
1 2 3 4 | D = iris_DatasetExperiment()
I = kfold_xval(factor_name='Species') *
(mean_centre() + PLSDA(factor_name='Species'))
I = run(I,D,balanced_accuracy())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.