Nothing
library(testthat)
library(lavaan)
test_that("Multigroup models: .ind.", {
mod <-
"
m ~ x
y ~ m + x
"
mod_es1 <- list(".ind.(x->m->y)" = "mi",
"y ~ x" = c("m", "l", "n"))
mod_es2 <-
"
.ind.(y~m~x): mi
y ~ x: [m, l, nil]
"
pop_es_yaml(mod_es2)
chk1 <- ptable_pop(mod, mod_es1)
chk2 <- ptable_pop(mod, mod_es2)
expect_equal(chk1$start,
chk2$start,
tolerance = 1e-1)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.