Nothing
library(testthat)
library(lavaan)
library(semfindr)
#context("Test est_change_raw")
mod <-
'
iv1 ~~ iv2
m1 ~ iv1 + iv2
dv ~ m1
'
dat <- pa_dat
dat0 <- dat[1:50, ]
fit <- lavaan::sem(mod, dat0)
# From scores
fit_est_change_approx <- lavScores(fit) %*% vcov(fit) *
nobs(fit) / (nobs(fit) - 1)
# From function
fit_est_change_approx2 <- est_change_raw_approx(fit)
test_that("Checked against known results", {
expect_equal(ignore_attr = TRUE,
fit_est_change_approx2,
fit_est_change_approx
)
})
set.seed(1314)
fit_rerun <- lavaan_rerun(fit, to_rerun = 26:50)
fit_est_change <- est_change_raw(fit_rerun)
test_that("Exact and approximate results are similar", {
abs_diff <- abs(fit_est_change_approx2[26:50, ] -
fit_est_change)
expect_lt(max(abs_diff), expected = .01)
})
test1 <- est_change_raw_approx(fit, c("~"))
test2 <- est_change_raw_approx(fit, c("~~"))
test3 <- est_change_raw_approx(fit, c("m1 ~ iv1", "~~"))
test_that("est_change_raw_approx: Selected parameters", {
expect_true(all(colnames(test1) %in%
c("m1~iv1", "m1~iv2", "dv~m1")))
expect_true(all(colnames(test2) %in%
c("iv1~~iv2", "m1~~m1", "dv~~dv",
"iv1~~iv1", "iv2~~iv2")))
expect_true(all(colnames(test3) %in%
c("iv1~~iv2", "m1~iv1", "m1~~m1",
"dv~~dv", "iv1~~iv1", "iv2~~iv2")))
})
# With fixed parameters
mod <-
'
m1 ~ iv1 + iv2
dv ~ m1
'
dat <- pa_dat
dat0 <- dat[1:50, ]
fit <- lavaan::sem(mod, dat0)
gcd_approx2 <- est_change_raw_approx(fit)
# From scores
fit_est_change_approx <- lavScores(fit) %*% vcov(fit) *
nobs(fit) / (nobs(fit) - 1)
# From function
fit_est_change_approx2 <- est_change_raw_approx(fit)
test_that("Checked against known results", {
expect_equal(ignore_attr = TRUE,
fit_est_change_approx2,
fit_est_change_approx
)
})
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.