predict.BASELINEmodel {utiml} | R Documentation |
Predict Method for BASELINE
Description
This function predicts values based upon a model trained by
baseline
.
Usage
## S3 method for class 'BASELINEmodel'
predict(object, newdata, probability = getOption("utiml.use.probs", TRUE), ...)
Arguments
object |
Object of class ' |
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: |
... |
not used. |
Value
An object of type mlresult, based on the parameter probability.
See Also
Examples
model <- baseline(toyml)
pred <- predict(model, toyml)
[Package utiml version 0.1.7 Index]