Nothing
devtools::load_all()
m1 <- '
X =~ x1 + x2 + x3
Y =~ y1 + y2 + y3
Z =~ z1 + z2 + z3
Y ~ X + Z + X:Z
'
sam <- \(...) testthat::expect_warning(lavaan::sam(...),
regex = "*switching to naive*")
est <- sam(m1, oneInt)
parameter_estimates(est)
wrap <- \(expr) (testthat::expect_warning(expr, regex = "Replacing.*"))
wrap(centered_estimates(est))
wrap(standardized_estimates(est))
plot_interaction(x = "X", z = "Z", y = "Y", xz = "X:Z",
vals_z = c(-0.5, 0.5), model = est)
plot_jn(x = "X", z = "Z", y = "Y", model = est)
plot_surface(x = "X", z = "Z", y = "Y", model = est)
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.