eigen.loadings | R Documentation |
The default procedures for principal component returns values not immediately equivalent to the loadings from a factor analysis. eigen.loadings translates them into the more typical metric of eigen vectors multiplied by the squareroot of the eigenvalues. This lets us find pseudo factor loadings if we have used princomp or eigen.
If we use principal
to do our principal components analysis, then we do not need this routine.
eigen.loadings(x)
x |
the output from eigen or a list of class princomp derived from princomp |
A matrix of Principal Component loadings more typical for what is expected in psychometrics. That is, they are scaled by the square root of the eigenvalues.
Useful for SAPA analyses
revelle@northwestern.edu
https://personality-project.org/revelle.html
x <- eigen(Harman74.cor$cov)
x$vectors[1:8,1:4] #as they appear from eigen
y <- princomp(covmat=Harman74.cor$cov)
y$loadings[1:8,1:4] #as they appear from princomp
eigen.loadings(x)[1:8,1:4] # rescaled by the eigen values
z <- pca(Harman74.cor$cov,4,rotate="none")
z$loadings[1:8,1:4] #as they appear in pca
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.