est.incisingball {Rdimtools} | R Documentation |
Intrinsic Dimension Estimation with Incising Ball
Description
Incising ball methods exploits the exponential relationship of the number of samples contained in a ball and the radius of the incising ball.
Usage
est.incisingball(X)
Arguments
X |
an |
Value
a named list containing containing
- estdim
estimated intrinsic dimension.
Author(s)
Kisung You
References
Fan M, Qiao H, Zhang B (2009). “Intrinsic Dimension Estimation of Manifolds by Incising Balls.” Pattern Recognition, 42(5), 780–787.
Examples
## 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.incisingball(X)
sprintf("* est.incisingball : estimated dimension is %d.",output$estdim)
[Package Rdimtools version 1.1.2 Index]