Nothing
library(testthat)
test_that("Test moderation: lm", {
mod <-
"
m ~ x + w1 + x:w1
y ~ m + w2 + m:w2 + x
"
mod_es <- c("m ~ x" = "n",
"y ~ x" = "m",
"m ~ w1" = "n",
"m ~ x:w1" = "l",
"y ~ m:w2" = "-s")
sim_only <- power4test(nrep = 5,
model = mod,
pop_es = mod_es,
n = 100,
fit_model_args = list(fit_function = "lm"),
do_the_test = FALSE,
iseed = 1234)
test_out <- power4test(object = sim_only,
test_fun = test_moderation)
(chk <- test_summary(test_out))
test_out <- power4test(object = test_out,
test_fun = test_parameters,
test_args = list(pars = c("m~x:w1",
"y~m:w2")))
(chk <- test_summary(test_out))
expect_equal(chk[[1]]$sig,
chk[[2]]$sig)
# Standardized
expect_error(test_out <- power4test(object = sim_only,
test_fun = test_moderation,
test_args = list(standardized = 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.