View source: R/lavaanSummary.R
lavaanSummary | R Documentation |
Outputs Lavaan Summary
lavaanSummary(x, subset = NULL)
x |
a stim Object |
subset |
Specify which model(s) you would like summarized. Default is to output all estimated models |
Lavaan summary table
model <- 'Y~X' stability <- data.frame(X = c(.3, .4, .5), Y = c(.3, .5, .6)) dat <- data.frame(Y = rnorm(500, 0, 1), X = rnorm(500, 0, 1), Z = rnorm(500, 0, 1)) output <- stim(data = dat, model = model, stability = stability) lavaanSummary(output, subset = c(1,2))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.