Learn R Programming

semTools (version 0.4-11)

EFA-class: Class For Rotated Results from EFA

Description

This class contains the results of rotated exploratory factor analysis

Arguments

Objects from the Class

Objects can be created via the orthRotate or oblqRotate function.

methods

  • summaryThesummaryfunction shows the detailed results of the rotated solution. This function has two arguments:suppressandsort. Thesuppressargument is used to not show the standardized loading values that less than the specified value. The default is 0.1. Thesortis used to sort the factor loadings by the sizes of factor loadings in each factor. The default isTRUE.

See Also

efaUnrotate; orthRotate; oblqRotate

Examples

Run this code
library(lavaan)
unrotated <- efaUnrotate(HolzingerSwineford1939, nf=3, varList=paste0("x", 1:9), estimator="mlr")
summary(unrotated, std=TRUE)
inspect(unrotated, "std")

# Rotated by Quartimin
rotated <- oblqRotate(unrotated, method="quartimin")
summary(rotated)

Run the code above in your browser using DataLab