Hello,
Ever since the recent lavaan update, the lavaan summary function does not seem to work when you run r on Juypter Notebook. Instead of the normal summary for a cfa(), it provides a short list of the summary variables. Prior to the update, it has been working fine. My r, Jupyter Notebook, and computer are all up-to-date. Below is example code and attached is a screenshoot. Any help would be greatly appreciated.
visual =~ x1 + x2 + x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9
HS.model <- ' visual =~ x1 + x2 + x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9 '
fit <- cfa(HS.model, data = HolzingerSwineford1939)
summary(fit, fit.measures = TRUE)
Output:
$header$lavaan.version'0.6-12'
$sam.approachFALSE
$optim.method'nlminb'
$optim.iterations35
$optim.convergedTRUE
$optim$estimator'ML'
$estimator.args
$optim.method'nlminb'
$npar21
$eq.constraintsFALSE
$nrow.ceq.jac0
$nrow.cin.jac0
$nrow.con.jac0
$con.jac.rank0
$data$ngroups1
$nobs301
$test$standard =
$test'standard'
$stat85.3055217699727
$stat.group85.3055217699727
$df24
$refdistr'chisq'
$pvalue8.50255321704907e-09
Best,
Gold Okafor