cla_knn {daltoolbox}R Documentation

K Nearest Neighbor Classification

Description

Classifies using the K-Nearest Neighbor algorithm. It wraps the class library.

Usage

cla_knn(attribute, slevels, k = 1)

Arguments

attribute

attribute target to model building.

slevels

Possible values for the target classification.

k

A vector of integers indicating the number of neighbors to be considered.

Value

A knn object.

Examples

data(iris)
slevels <- levels(iris$Species)
model <- cla_knn("Species", slevels, k=3)

# preparing dataset for random sampling
sr <- sample_random()
sr <- train_test(sr, iris)
train <- sr$train
test <- sr$test

model <- fit(model, train)

prediction <- predict(model, test)
predictand <- adjust_class_label(test[,"Species"])
test_eval <- evaluate(model, predictand, prediction)
test_eval$metrics

[Package daltoolbox version 1.0.767 Index]