klaR (version 0.6-15)

predict.sknn: Simple k Nearest Neighbours Classification

Description

Classifies new observations using the sknn learned by the sknn-function.

Usage

# S3 method for sknn
predict(object, newdata,...)

Arguments

object

Object of class sknn.

newdata

Data frame (or matrix) of cases to be classified.

...

Value

A list with elements ‘class’ and ‘posterior’.

See Also

sknn, knn

Examples

Run this code
# NOT RUN {
data(iris)
x <- sknn(Species ~ ., data = iris)
predict(x, iris)
x <- sknn(Species ~ ., gamma = 10, kn = 10, data = iris)
predict(x, iris)
# }

Run the code above in your browser using DataCamp Workspace