Learn R Programming

daltoolbox (version 1.1.727)

reg_knn: knn regression

Description

Creates a regression object that uses the K-Nearest Neighbors (knn) method for regression

Usage

reg_knn(attribute, k)

Value

returns a knn regression object

Arguments

attribute

attribute target to model building

k

number of k neighbors

Examples

Run this code
data(Boston)
model <- reg_knn("medv", k=3)

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

model <- fit(model, train)

test_prediction <- predict(model, test)
test_predictand <- test[,"medv"]
test_eval <- evaluate(model, test_predictand, test_prediction)
test_eval$metrics

Run the code above in your browser using DataLab