| EFA-class {semTools} | R Documentation |
Class For Rotated Results from EFA
Description
This class contains the results of rotated exploratory factor analysis
Usage
## S4 method for signature 'EFA'
show(object)
## S4 method for signature 'EFA'
summary(object, suppress = 0.1, sort = TRUE)
Arguments
object |
object of class |
suppress |
any standardized loadings less than the specified value will not be printed to the screen |
sort |
|
Slots
loadingRotated standardized factor loading matrix
rotateRotation matrix
gradRotategradient of the objective function at the rotated loadings
convergenceConvergence status
phi:Factor correlation matrix. Will be an identity matrix if orthogonal rotation is used.
seStandard errors of the rotated standardized factor loading matrix
methodMethod of rotation
callThe command used to generate this object
Objects from the Class
Objects can be created via the
orthRotate or oblqRotate function.
Author(s)
Sunthud Pornprasertmanit (psunthud@gmail.com)
See Also
efaUnrotate; orthRotate;
oblqRotate
Examples
unrotated <- efaUnrotate(HolzingerSwineford1939, nf = 3,
varList = paste0("x", 1:9), estimator = "mlr")
summary(unrotated, std = TRUE)
lavInspect(unrotated, "std")
# Rotated by Quartimin
rotated <- oblqRotate(unrotated, method = "quartimin")
summary(rotated)