dbscan (version 0.9-8)

kNNdist: Calculate and plot the k-Nearest Neighbor Distance

Description

Fast caclulation of the k-nearest neighbor distances in a matrix of points. The plot can be used to help find a suitable value for the eps neighborhood for DBSCAN. Look for the knee in the plot.

Usage

kNNdist(x, k, ...) kNNdistplot(x, k = 4, ...)

Arguments

x
the data set as a matrix or a dist object.
k
number of nearest neighbors used (use minPoints).
...
further arguments are passed on to kNN.

Value

kNNdist returns a numeric vector with the distance to its k nearest neighbor.

Details

See kNN for a discusion of the kd-tree related parameters.

See Also

kNN.

Examples

Run this code
data(iris)
iris <- as.matrix(iris[,1:4])

kNNdist(iris, k=4, search="kd")
kNNdistplot(iris, k=4)
## the knee is around a distance of .5

cl <- dbscan(iris, eps = .5, minPts = 4)
pairs(iris, col = cl$cluster+1L)
## Note: black are noise points

Run the code above in your browser using DataCamp Workspace