Learn R Programming

mlr3 (version 0.23.0)

as_prediction_classif: Convert to a Classification Prediction

Description

Convert object to a PredictionClassif.

Usage

as_prediction_classif(x, ...)

# S3 method for PredictionClassif as_prediction_classif(x, ...)

# S3 method for data.frame as_prediction_classif(x, ...)

Value

PredictionClassif.

Arguments

x

(any)
Object to convert.

...

(any)
Additional arguments.

Examples

Run this code
# create a prediction object
task = tsk("penguins")
learner = lrn("classif.rpart", predict_type = "prob")
learner$train(task)
p = learner$predict(task)

# convert to a data.table
tab = as.data.table(p)

# convert back to a Prediction
as_prediction_classif(tab)

# split data.table into a list of data.tables
tabs = split(tab, tab$truth)

# convert back to list of predictions
preds = lapply(tabs, as_prediction_classif)

# calculate performance in each group
sapply(preds, function(p) p$score())

Run the code above in your browser using DataLab