get_std_loadings {kfa} | R Documentation |
Standardized factor loadings matrix
Description
Extract standardized factor loadings from lavaan object
Usage
get_std_loadings(object, type = "std.all", df = FALSE)
Arguments
object |
a |
type |
standardize on the latent variables ( |
df |
should loadings be returned as a |
Value
A matrix
or data.frame
of factor loadings
Examples
data(HolzingerSwineford1939, package = "lavaan")
HS.model <- ' visual =~ x1 + x2 + x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9 '
fit <- lavaan::cfa(HS.model, data = HolzingerSwineford1939)
get_std_loadings(fit)
[Package kfa version 0.2.2 Index]