inst/tinytest/test_get_drop_sem.R

# WIP

if (FALSE) {

    suppressMessages(library(lavaan))

    dat <- dat_sem

    mod <-
    "
    f1 =~ x1 + x2 + x3 + x4
    f2 =~ x5 + x6 + x7 + x8
    f3 =~ x9 + x10 + x11 + x12
    f4 =~ x13 + x14 + x15 + x16
    f2 ~ a * f1
    f3 ~ a * f2
    f4 ~ f3
    "

    fit <- sem(mod, dat_sem)
    pt <- parameterTable(fit)

    mod_to_drop <- get_drop(fit,
                          df_change = 3)
    length(mod_to_drop)
    head(mod_to_drop)
    names(mod_to_drop)
    attributes(mod_to_drop[[92]])

    tmp1 <- sapply(mod_to_drop, attr, "df_expected")
    tmp2 <- sapply(mod_to_drop, attr, "df_actual")
    all.equal(tmp1, tmp2)

    # Test Print

    mod_to_drop
    print(mod_to_drop, max_tables = 25)
  }

Try the modelbpp package in your browser

Any scripts or data that you put into this service are public.

modelbpp documentation built on Sept. 30, 2024, 9:40 a.m.