Tidy summarizes information about the components of a model. A model component might be a single term in a regression, a single hypothesis, a cluster, or a class. Exactly what tidy considers to be a model component varies cross models but is usually self-evident. If a model has several distinct types of components, you will need to specify which components to return.
# S3 method for lavaan tidy(x, conf.int = TRUE, conf.level = 0.95, ...)
x | A |
---|---|
conf.int | Logical indicating whether or not to include a confidence
interval in the tidied output. Defaults to |
conf.level | The confidence level to use for the confidence interval
if |
... | Additional arguments passed to |
A tibble::tibble with one row for each estimated parameter and columns:
The result of paste(lhs, op, rhs)
The operator in the model syntax (e.g. ~~
for covariances, or
~
for regression parameters)
The group (if specified) in the lavaan model
The parameter estimate (may be standardized)
The z value returned by lavaan::parameterEstimates()
Standardized estimates based on the variances of the (continuous) latent variables only
Standardized estimates based on both the variances of both (continuous) observed and latent variables.
Standardized estimates based on both the variances of both (continuous) observed and latent variables, but not the variances of exogenous covariates.
tidy()
, lavaan::cfa()
, lavaan::sem()
,
lavaan::parameterEstimates()
Other lavaan tidiers: glance.lavaan
if (require("lavaan")) { library(lavaan) cfa.fit <- cfa('F =~ x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9', data = HolzingerSwineford1939, group = "school") tidy(cfa.fit) }#>#> Warning: there is no package called ‘lavaan’