umx (version 4.0.0)

loadings.MxModel: Extract factor loadings from an EFA (factor analysis).

Description

loadings extracts the factor loadings from an EFA (factor analysis) model. It behaves equivalently to stats::loadings, returning the loadings from an EFA (factor analysis). However it does not store the rotation matrix.

Usage

# S3 method for MxModel
loadings(x, ...)

Arguments

x

A RAM model from which to get loadings.

...

Other parameters (currently unused)

Value

  • loadings matrix

References

See Also

Other Reporting Functions: umxAPA(), umxFactorScores(), umxGetParameters(), umxParameters(), umxReduce(), umx_aggregate(), umx_names(), umx_time(), umx

Examples

Run this code
# NOT RUN {
myVars <- c("mpg", "disp", "hp", "wt", "qsec")
m1 = umxEFA(name = "test", factors = 2, data = mtcars[, myVars])
loadings(m1)

# }

Run the code above in your browser using DataLab