Nothing
library(testthat)
library(lavaan)
test_that("parameterEstimates_boot: Models with equality constraints", {
# Adapted from https://lavaan.ugent.be/tutorial/syntax2.html
data(HolzingerSwineford1939)
model <-
"
visual =~ x1 + v2*x2 + v2*x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9
"
system.time(fit <- cfa(model = model,
data = HolzingerSwineford1939,
estimator = "MLR"))
suppressWarnings(fit <- store_boot(fit,
R = 50,
iseed = 1234,
do_bootstrapping = TRUE))
ci_boot <- parameterEstimates_boot(fit,
boot_pvalue_min_size = 50)
fit2 <- cfa(model = model,
data = HolzingerSwineford1939,
se = "none")
boot_ci_test <- bootstrapLavaan(fit2, R = 50,
FUN = coef,
iseed = 1234)
bl_est <- bootstrapLavaan(fit2, R = 50,
FUN = coef,
iseed = 1234)
fit_bl_est <- fit
fit_bl_est@boot$coef <- bl_est
ci_boot_bl_est <- parameterEstimates_boot(fit_bl_est,
boot_pvalue_min_size = 50)
# Cannot compare with get_std results because, even with same seed,
# bootstrapLavaan and se="boot" does not result in the same set
# of bootstrap samples.
expect_equal(
attr(ci_boot_bl_est, "boot_est_ustd"),
boot_ci_test,
ignore_attr = TRUE
)
})
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.