View source: R/regularizationHelper.R
| variances | R Documentation | 
Extract the labels of all variances found in a lavaan model.
variances(lavaanModel)
| lavaanModel | fitted lavaan model | 
vector with parameter labels
# The following is adapted from ?lavaan::sem
library(lessSEM)
model <- ' 
  # latent variable definitions
  ind60 =~ x1 + x2 + x3
  dem60 =~ y1 + a*y2 + b*y3 + c*y4
  dem65 =~ y5 + a*y6 + b*y7 + c*y8
  # regressions
  dem60 ~ ind60
  dem65 ~ ind60 + dem60
  # residual correlations
  y1 ~~ y5
  y2 ~~ y4 + y6
  y3 ~~ y7
  y4 ~~ y8
  y6 ~~ y8
'
fit <- sem(model, data = PoliticalDemocracy)
variances(fit)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.