kaiser | R Documentation |
Kaiser (1958) suggested normalizing factor loadings before rotating them, and then denormalizing them after rotation. The GPArotation package does not (by default) normalize, nor does the fa
function. Then, to make it more confusing, varimax in stats does,Varimax in GPArotation does not. kaiser
will take the output of a non-normalized solution and report the normalized solution.
kaiser(f, rotate = "oblimin",m=4,pro.m=4)
f |
A factor analysis output from |
rotate |
Any of the standard rotations avaialable in the GPArotation package. |
m |
a parameter to pass to |
pro.m |
A redundant parameter, which is used to replace m in calls to Promax |
Best results if called from an unrotated solution. Repeated calls using a rotated solution will produce incorrect estimates of the correlations between the factors.
See the values returned by GPArotation functions
Prepared in response to a question about why fa
oblimin results are different from SPSS.
William Revelle
Kaiser, H. F. (1958) The varimax criterion for analytic rotation in factor analysis. Psychometrika 23, 187-200.
fa
, Promax
f3 <- fa(Thurstone,3)
f3n <- kaiser(fa(Thurstone,3,rotate="none"))
f3p <- kaiser(fa(Thurstone,3,rotate="none"),rotate="Promax",m=3)
factor.congruence(list(f3,f3n,f3p))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.