filterBaseModels.Rd
Filter our base level 1 models that do not perform sufficiently well
filterBaseModels(resultList, filterSettings)
A list of runPlp() result objects (the level 1 models that are candidates for the ensemble level 1 models)
A list containing the settings that specify how to filter the candidate level 1 models
if (FALSE) {
# only include models with an AUROC of 0.7 or higher for cross validation
level1Models <- filterBaseModels(
resultList,
filterSettings = list(
evaluation = 'CV',
metric = 'AUROC',
minValue = 0.7
)
)
}