Multiple rotations of factor loadings to find local minima
Multiple rotations of factor loadings to find local minima
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,...)
Arguments
loadings: Factor loadings matrix from fa or pca or any N x k loadings matrix
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
Details
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.
Returns
loadings: The best rotated solution
Phi: Factor correlations
rotation.stats: Hyperplane count, complexity.
rot.mat: The rotation matrix used.
References
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
Author(s)
William Revelle
Note
Adapted from the fungible package by Waller
See Also
fa
Examples
f5 <- fa(bfi[,1:25],5,rotate="none")faRotations(f5,n.rotations=10)#note that the factor analysis needs to not do the rotationfaRotations(f5$loadings)#matrix inputgeo <- faRotations(f5,rotate="geominQ",n.rotation=10)# a popular alternative, but more sensitive to local minimadescribe(geo$rotation.stats[,1:3])