est.pcathr {Rdimtools} | R Documentation |
PCA Thresholding with Accumulated Variance
Description
Principal Component Analysis exploits sample covariance matrix whose
eigenvectors and eigenvalues are principal components and projected
variance, correspondingly. Given varratio
, it thresholds the
accumulated variance and selects the estimated dimension. Note that other than
linear submanifold case, the naive selection scheme from this algorithm
lacks flexibility in discovering intrinsic dimension.
Usage
est.pcathr(X, varratio = 0.95)
Arguments
X |
an |
varratio |
target explainability for accumulated variance in |
Value
a named list containing containing
- estdim
estimated dimension according to
varratio
.- values
eigenvalues of sample covariance matrix.
Author(s)
Kisung You
See Also
Examples
## generate 3-dimensional normal data
X = matrix(rnorm(100*3), nrow=100)
## replicate 3 times with translations
Y = cbind(X-10,X,X+10)
## use PCA thresholding estimation with 95% variance explainability
## desired return is for dimension 3.
output = est.pcathr(Y)
pmessage = paste("* estimated dimension is ",output$estdim, sep="")
print(pmessage)
## use screeplot
opar <- par(no.readonly=TRUE)
plot(output$values, main="scree plot", type="b")
par(opar)
[Package Rdimtools version 1.1.2 Index]