Description Usage Arguments Value Examples
For repeated cross-validation, find the mean and standard error of N rounds for each model.
1 | summaryStats(i, evalMeasuresDF, emNames, modelNames)
|
i |
An integer representing 1:N where N is the total number of cross-validation rounds. |
evalMeasuresDF |
A dataframe with the following columns: Model, RepNum, PosClass.FScore, PosClass.Recall, PosClass.Precision, NegClass.FScore, NegClass.Recall, NegClass.Precision, and Accuracy. The rows of the dataframe will correspond to the results of a particular model and a particular round of cross-validation. |
emNames |
A list of names of the evaluation measures to visualize. Accepts the following: PosClass.FScore, PosClass.Recall, PosClass.Precision, NegClass.FScore, NegClass.Recall, NegClass.Precision, and Accuracy. Default is "All". |
modelNames |
A list of the models trained. |
A dataframe with the following columns: Model, evalMeasure, Mean, and SE (Standard Error).
1 2 | summaryStatsList <- lapply(1:numModels, summaryStats,
evalMeasuresDF=evalMeasuresDF, emNames=emNames, modelNames=modelNames)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.