Learn R Programming

utiml (version 0.1.6)

predict.BASELINEmodel: Predict Method for BASELINE

Description

This function predicts values based upon a model trained by baseline.

Usage

# S3 method for BASELINEmodel
predict(object, newdata, probability = getOption("utiml.use.probs", TRUE), ...)

Arguments

object

Object of class 'BASELINEmodel'.

newdata

An object containing the new input data. This must be a matrix, data.frame or a mldr object.

probability

Logical indicating whether class probabilities should be returned. (Default: getOption("utiml.use.probs", TRUE))

...

not used.

Value

An object of type mlresult, based on the parameter probability.

See Also

Baseline

Examples

Run this code
# NOT RUN {
model <- baseline(toyml)
pred <- predict(model, toyml)
# }

Run the code above in your browser using DataLab