Learn R Programming

mlr (version 2.7)

performance: Measure performance of prediction.

Description

Measures the quality of a prediction w.r.t. some performance measure.

Usage

performance(pred, measures, task = NULL, model = NULL, feats = NULL)

Arguments

Value

[named numeric]. Performance value(s), named by measure(s).

See Also

Other performance: estimateRelativeOverfitting, makeCostMeasure, makeCustomResampledMeasure, makeMeasure, measures

Examples

Run this code
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)

Run the code above in your browser using DataLab