predict.MLKNNmodel: Predict Method for ML-KNN

Description Usage Arguments Value See Also Examples

View source: R/method_mlknn.R

Description

This function predicts values based upon a model trained by mlknn. '

Usage

1
2
3
4
5
6
7
8
9
## S3 method for class 'MLKNNmodel'
predict(
  object,
  newdata,
  probability = getOption("utiml.use.probs", TRUE),
  ...,
  cores = getOption("utiml.cores", 1),
  seed = getOption("utiml.seed", NA)
)

Arguments

object

Object of class 'MLKNNmodel'.

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.

cores

Ignored because this method does not support multi-core.

seed

Ignored because this method is deterministic.

Value

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

See Also

ML-KNN

Examples

1
2
model <- mlknn(toyml)
pred <- predict(model, toyml)

Example output

Loading required package: mldr
Loading required package: parallel
Loading required package: ROCR

utiml documentation built on May 31, 2021, 9:09 a.m.