psych (version 1.0-97)

fa.sort: Sort factor analysis or principal components analysis loadings

Description

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.

Usage

fa.sort(fa.results)

Arguments

fa.results
The output from a factor analysis or principal components analysis using fa or principal.

Value

  • A sorted factor analysis, principal components analysis, or omega loadings matrix.

    These sorted values are used internally by the various diagram functions.

Details

The fa.results$loadings are replaced with sorted loadings.

See Also

See Also as fa,print.psych, fa.diagram,

Examples

Run this code
test.simple <- fa(item.sim(16),2,rotate="oblimin")
fa.sort(test.simple)

Run the code above in your browser using DataCamp Workspace