Description Usage Arguments Value See Also Examples
Measures the quality of a prediction w.r.t. some performance measure.
1 | performance(pred, measures, task = NULL, model = NULL, feats = NULL)
|
pred |
[ |
measures |
[ |
task |
[ |
model |
[ |
feats |
[ |
[named numeric
]. Performance value(s), named by measure(s).
Other performance: ConfusionMatrix
,
calculateConfusionMatrix
,
calculateROCMeasures
,
estimateRelativeOverfitting
,
makeCostMeasure
,
makeCustomResampledMeasure
,
makeMeasure
, measures
,
setAggregation
,
setMeasurePars
1 2 3 4 5 6 7 8 9 10 11 12 | training.set = seq(1, nrow(iris), by = 2)
test.set = seq(2, nrow(iris), by = 2)
task = makeClassifTask(data = iris, target = "Species")
lrn = makeLearner("classif.lda")
mod = train(lrn, task, subset = training.set)
pred = predict(mod, newdata = iris[test.set, ])
performance(pred, measures = mmce)
# Compute multiple performance measures at once
ms = list("mmce" = mmce, "acc" = acc, "timetrain" = timetrain)
performance(pred, measures = ms, task, mod)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.