distplot {fdm2id} | R Documentation |
Plot a k-distance graphic
Description
Plot the distance to the k's nearest neighbours of each object in decreasing order. Mostly used to determine the eps
parameter for the dbscan
function.
Usage
distplot(k, d, h = -1)
Arguments
k |
The |
d |
The dataset ( |
h |
The y-coordinate at which a horizontal line should be drawn. |
See Also
Examples
require (datasets)
data (iris)
distplot (5, iris [, -5], h = .65)
[Package fdm2id version 0.9.9 Index]