Learn R Programming

Directional (version 4.0)

Tuning of the k-NN algorithm using the arc cosinus distance: k-NN algorithm using the arc cosinus distance. Tuning the k neigbours

Description

It estimates the percentage of correct classification via an m-fold cross valdiation. The bias is estimated as well using the algorithm suggested by Tibshirani and Tibshirani (2009) and is subtracted.

Usage

dirknn.tune(z, nfolds = 10, A = 5, ina, type = "S", mesos = TRUE, folds = NULL,
parallel = FALSE, stratified = TRUE, seed = FALSE)

Arguments

z

The data, a numeric matrix with unit vectors.

nfolds

How many folds to create?

A

The maximum number of nearest neighbours, set to 5 by default. The 1 nearest neighbour is not used.

ina

A variable indicating the groups of the data x.

type

If type is "S", the standard k-NN algorithm is to be used, else "NS" for the non standard one. See below (details) for more information.

mesos

A boolean variable used only in the case of the non standard algorithm (type="NS"). Should the average of the distances be calculated (TRUE) or not (FALSE)? If it is FALSE, the harmonic mean is calculated.

folds

Do you already have a list with the folds? If not, leave this NULL.

parallel

If you want the standard -NN algorithm to take place in parallel set this equal to TRUE.

stratified

Should the folds be created in a stratified way? i.e. keeping the distribution of the groups similar through all folds?

seed

If seed is TRUE, the results will always be the same.

Value

A list including:

per

The average percent of correct classification across the neighbours.

percent

The bias corrected percent of correct classification.

runtime

The run time of the algorithm. A numeric vector. The first element is the user time, the second element is the system time and the third element is the elapsed time.

Details

The standard algorithm is to keep the k nearest observations and see the groups of these observations. The new observation is allocated to the most frequent seen group. The non standard algorithm is to calculate the classical mean or the harmonic mean of the k nearest observations for each group. The new observation is allocated to the group with the smallest mean distance.

We have made an eficient (not very much efficient though) memory allocation. Even if you have hundreds of thousands of observations, the computer will not clush, it will only take longer. Instead of calcualte the distance matrix once in the beginning we calcualte the distances of the out-of-sample observations from the rest. If we calculated the distance matrix in the beginning, once, the resulting matrix could have dimensions thousands by thousands. This would not fit into the memory. If you have a few hundres of observations, the runtime is about the same (maybe less, maybe more) as calculating the distance matrix in the first place.

See Also

dirknn, vmf.da, mix.vmf

Examples

Run this code
# NOT RUN {
k <- runif(4, 4, 20)
prob <- c(0.2, 0.4, 0.3, 0.1)
mu <- matrix(rnorm(16), ncol = 4)
mu <- mu / sqrt( rowSums(mu^2) )
da <- rmixvmf(200, prob, mu, k)
x <- da$x
ina <- da$id
dirknn.tune(x, nfolds = 5, A = 10, ina, type = "S", mesos = TRUE)
dirknn.tune(x, nfolds = 10, A = 5, ina, type = "S", mesos = TRUE)
# }

Run the code above in your browser using DataLab