est.nearneighbor1 | R Documentation |
Based on an assumption of data points being locally uniformly distributed,
est.nearneighbor1
estimates the intrinsic dimension based on the
local distance information in an iterative manner.
est.nearneighbor1(X, K = max(2, round(ncol(X)/5)))
X |
an (n\times p) matrix or data frame whose rows are observations. |
K |
maximum neighborhood size, smaller than p. |
a named list containing containing
estimated intrinsic dimension.
Kisung You
pettis_intrinsic_1979Rdimtools
## create an example data with intrinsic dimension 2 X = cbind(aux.gensamples(dname="swiss"),aux.gensamples(dname="swiss")) ## acquire an estimate for intrinsic dimension output = est.nearneighbor1(X) sprintf("* est.nearneighbor1 : estimated dimension is %.2f.",output$estdim)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.