fa.sort {psych} | R Documentation |
Although the print.psych function will sort factor analysis loadings, sometimes it is useful to do this outside of the print function. fa.sort takes the output from the fa or principal functions and sorts the loadings for each factor. Items are located in terms of their greatest loading.
fa.sort(fa.results)
fa.results |
The output from a factor analysis or principal components analysis using fa or principal .
|
The fa.results$loadings are replaced with sorted loadings.
A sorted factor analysis, principal components analysis, or omega loadings matrix.
These sorted values are used internally by the various diagram functions.
William Revelle
See Also as fa
,print.psych
, fa.diagram
,
test.simple <- fa(item.sim(16),2,rotate="oblimin") fa.sort(test.simple)