
standardizedSolution(object, type = "std.all", se = TRUE, zstat = TRUE, pvalue = TRUE, remove.eq = TRUE, remove.ineq = TRUE, remove.def = FALSE)
lavaan
."std.lv"
, the standardized estimates are
on the variances of the (continuous) latent variables only.
If "std.all"
, the standardized estimates are based
on both the variances of both (continuous) observed and latent variables.
If "std.nox"
, the standardized estimates are based
on both the variances of both (continuous) observed and latent variables,
but not the variances of exogenous covariates.TRUE
, an extra column is added containing
the so-called z-statistic, which is simply the value of the estimate divided
by its standard error.TRUE
, an extra column is added containing
the pvalues corresponding to the z-statistic, evaluated under a standard
normal distribution.HS.model <- ' visual =~ x1 + x2 + x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9 '
fit <- cfa(HS.model, data=HolzingerSwineford1939)
standardizedSolution(fit)
Run the code above in your browser using DataLab