View source: R/lav_efa_summary.R
summary.efaList | R Documentation |
S3 summary and print methods for class efaList
.
## S3 method for class 'efaList'
summary(object,
nd = 3L, cutoff = 0.3, dot.cutoff = 0.1, alpha.level = 0.01,
lambda = TRUE, theta = TRUE, psi = TRUE, fit.table = TRUE,
fs.determinacy = FALSE, eigenvalues = TRUE, sumsq.table = TRUE,
lambda.structure = FALSE, se = FALSE, zstat = FALSE,
pvalue = FALSE, ...)
## S3 method for class 'efaList.summary'
print(x, nd = 3L, cutoff = 0.3, dot.cutoff = 0.1,
alpha.level = 0.01, ...)
object |
An object of class |
x |
An object of class |
nd |
Integer. The number of digits that are printed after the decimal point in the output. |
cutoff |
Numeric. Factor loadings smaller that this value (in absolute value) are not printed (even if they are significantly different from zero). The idea is that only medium to large factor loadings are printed, to better see the overall structure. |
dot.cutoff |
Numeric. Factor loadings larger (in absolute value) than this value, but smaller (in absolute value) than the cutoff value are shown as a dot. They represent small loadings that may still need your attention. |
alpha.level |
Numeric. If the the p-value of a factor loading is smaller
than this value, a significance star is printed to the right of the
factor loading. To switch this off, use |
lambda |
Logical. If |
theta |
Logical. If |
psi |
Logical. If |
fit.table |
Logical. If |
fs.determinacy |
Logical. If |
eigenvalues |
Logical. If |
sumsq.table |
Logical. If |
lambda.structure |
Logical. If |
se |
Logical. If |
zstat |
Logical. If |
pvalue |
Logical. If |
... |
Further arguments passed to or from other methods. |
The function summary.efaList
computes and returns a list of
summary statistics for the list of EFA models in object
.
## The famous Holzinger and Swineford (1939) example
fit <- efa(data = HolzingerSwineford1939,
ov.names = paste("x", 1:9, sep = ""),
nfactors = 1:3,
rotation = "geomin",
rotation.args = list(geomin.epsilon = 0.01, rstarts = 1))
summary(fit, nd = 3L, cutoff = 0.2, dot.cutoff = 0.05,
lambda.structure = TRUE, pvalue = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.