Nothing
suppressMessages(library(lavaan))
dat <- dat_path_model
mod <-
"
x3 ~ a*x1 + b*x2
x4 ~ a*x1
ab := a*b
"
fit <- sem(mod,
dat_path_model,
meanstructure = TRUE,
fixed.x = TRUE)
ptable <- parameterTable(fit)
out1 <- modelbpp:::syntax_to_id(list("x3 ~ x1", "x3 ~~ x4", "x3 ~1",
"m1 ~~ m2"),
ptable = ptable)
out2 <- modelbpp:::syntax_to_id(list("m3 ~ m71",
"m1 ~~ m2"),
ptable = ptable)
expect_equal(sort(out1),
c(1, 6, 10),
info = "modelbpp:::syntax_to_id")
expect_true(length(out2) == 0,
info = "modelbpp:::syntax_to_id")
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.