tests/testthat/test-test_power_by_n_concat.R

library(testthat)

skip_if_not_installed("lmhelprs")

test_that("Power by n: Concatenate", {

model_simple_med <-
"
m ~ x
y ~ m + x
"

model_simple_med_es <- c("y ~ m" = "l",
                         "m ~ x" = "m",
                         "y ~ x" = "n")

sim_only <- power4test(nrep = 3,
                       model = model_simple_med,
                       pop_es = model_simple_med_es,
                       n = 50,
                       R = 50,
                       ci_type = "boot",
                       fit_model_args = list(fit_function = "lm"),
                       do_the_test = FALSE,
                       iseed = 1234)

test_out <- power4test(object = sim_only,
                       test_fun = test_indirect_effect,
                       test_args = list(x = "x",
                                        m = "m",
                                        y = "y",
                                        boot_ci = TRUE,
                                        mc_ci = FALSE))

tmp <- as.power4test_by_n(sim_only)
expect_true(is.list(tmp))
expect_true(length(tmp) == 1)
expect_true(inherits(tmp, "power4test_by_n"))

out1 <- power4test_by_n(test_out,
                        n = c(100, 110),
                        by_seed = 1234)
out2 <- power4test_by_n(test_out,
                        n = c(130, 120),
                        by_seed = 1234)
out <- c(out1, out2)
out_reject <- rejection_rates(out)

tmp <- sapply(out,
              \(x) {attr(x, "args")$iseed})
out_chk <- power4test_by_n(test_out,
                           n = c(100, 110, 120, 130),
                           by_seed = tmp)
out_reject_chk <- rejection_rates(out_chk)

expect_identical(out_reject,
                 out_reject_chk)

# Test sort = FALSE

out <- c(out1, out2, sort = FALSE)
out_reject <- rejection_rates(out)
tmp <- sapply(out,
              \(x) {attr(x, "args")$iseed})
out_chk <- power4test_by_n(test_out,
                           n = c(100, 110, 130, 120),
                           by_seed = tmp)
out_reject_chk <- rejection_rates(out_chk)

expect_identical(out_reject,
                 out_reject_chk)

model_simple_med2 <-
"
m ~ x
y ~ m
"
model_simple_med_es2 <- c("y ~ m" = "l",
                          "m ~ x" = "m")
sim_only2 <- power4test(nrep = 3,
                        model = model_simple_med2,
                        pop_es = model_simple_med_es2,
                        n = 100,
                        R = 50,
                        ci_type = "boot",
                        fit_model_args = list(fit_function = "lm"),
                        do_the_test = FALSE,
                        iseed = 1234)
test_out2 <- power4test(object = sim_only2,
                        test_fun = test_indirect_effect,
                        test_args = list(x = "x",
                                         m = "m",
                                         y = "y",
                                         boot_ci = TRUE,
                                         mc_ci = FALSE))
out3 <- power4test_by_n(test_out2,
                        n = c(105, 115))
expect_error(c(out3, out1))

})

Try the power4mome package in your browser

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

power4mome documentation built on Sept. 9, 2025, 5:35 p.m.