Description Usage Arguments Value Examples
Running an iterator will apply the iterator a number of times to a DatasetExperiment. For example, in cross-validation the same model is applied multiple times to the same data, splitting it into training and test sets. The input metric object can be calculated and collected for each iteration as an output.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | ## S4 method for signature 'bootstrap,DatasetExperiment,metric'
run(I, D, MET = NULL)
## S4 method for signature 'forward_selection_by_rank,DatasetExperiment,metric'
run(I, D, MET)
## S4 method for signature 'grid_search_1d,DatasetExperiment,metric'
run(I, D, MET)
## S4 method for signature 'kfold_xval,DatasetExperiment,metric'
run(I, D, MET = NULL)
## S4 method for signature 'permutation_test,DatasetExperiment,metric'
run(I, D, MET = NULL)
## S4 method for signature 'permute_sample_order,DatasetExperiment,metric'
run(I, D, MET)
|
I |
an iterator object |
D |
a DatasetExperiment object |
MET |
a metric object |
Modified iterator object
1 2 3 4 5 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.