est.twonn | R Documentation |
Unlike many intrinsic dimension (ID) estimation methods, est.twonn
only requires
two nearest datapoints from a target point and their distances. This extremely minimal approach
is claimed to redue the effects of curvature and density variation across different locations
in an underlying manifold.
est.twonn(X)
X |
an (n\times p) matrix or data frame whose rows are observations. |
a named list containing containing
estimated intrinsic dimension.
Kisung You
facco_estimating_2017Rdimtools
## create 3 datasets of intrinsic dimension 2. X1 = aux.gensamples(dname="swiss") X2 = aux.gensamples(dname="ribbon") X3 = aux.gensamples(dname="saddle") ## acquire an estimate for intrinsic dimension out1 = est.twonn(X1) out2 = est.twonn(X2) out3 = est.twonn(X3) ## print the results line1 = paste0("* est.twonn : 'swiss' gives ",round(out1$estdim,2)) line2 = paste0("* est.twonn : 'ribbon' gives ",round(out2$estdim,2)) line3 = paste0("* est.twonn : 'saddle' gives ",round(out3$estdim,2)) cat(paste0(line1,"\n",line2,"\n",line3))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.