faRotations | R Documentation |
A dirty little secret of factor rotation algorithms is the problem of local minima (Nguyen and Waller,2022). Following ideas in that article, we allow for multiple random restarts and then return the global optimal solution. Used as part of the fa
function or available as a stand alone function.
faRotations(loadings, r = NULL, rotate = "oblimin", hyper = 0.15, n.rotations = 10,...)
loadings |
Factor loadings matrix from |
r |
The correlation matrix used to find the factors. (Used to find the factor indeterminancy of the solution) |
rotate |
"none", "varimax", "quartimax", "bentlerT", "equamax", "varimin", "geominT" and "bifactor" are orthogonal rotations. "Promax", "promax", "oblimin", "simplimax", "bentlerQ, "geominQ" and "biquartimin" and "cluster" are possible oblique transformations of the solution. Defaults to oblimin. |
hyper |
The value defining when a loading is in the “hyperplane". |
n.rotations |
The number of random restarts to use. |
... |
additional parameters, specifically, keys may be passed if using the target rotation, or delta if using geominQ, or whether to normalize if using Varimax |
Nguyen and Waller review the problem of local minima in factor analysis. This is a problem for all rotation algorithms, but is more so for some. faRotate
generates n.rotations different starting values and then applies the specified rotation to the original loadings using multiple start values. Hyperplane counts and complexity indices are reported for each starting matrix, and the one with the highest hyoerplane count and the lowest complexity is returned.
loadings |
The best rotated solution |
Phi |
Factor correlations |
rotation.stats |
Hyperplane count, complexity. |
rot.mat |
The rotation matrix used. |
Adapted from the fungible package by Waller
William Revelle
Nguyen, H. V., & Waller, N. G. (2022, January 6). Local Minima and Factor Rotations in Exploratory Factor Analysis. Psychological Methods. Advance online publication. doi 10.1037/met0000467
fa
f5 <- fa(bfi[,1:25],5,rotate="none")
faRotations(f5,n.rotations=10) #note that the factor analysis needs to not do the rotation
faRotations(f5$loadings) #matrix input
geo <- faRotations(f5,rotate="geominQ",n.rotation=10)
# a popular alternative, but more sensitive to local minima
describe(geo$rotation.stats[,1:3])
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.