model.params.list <- list(
M = 3 # number of outcomes
, J = 30 # number of schools
, K = 10 # number of districts
, nbar = 50 # number of individuals per school
, rho.default = 0.5 # default rho value (optional)
################################################## impact
, MDES = 0.125 # minimum detectable effect size
################################################## level 3: districts
, numCovar.3 = 0 # number of district covariates
, R2.3 = 0 # percent of district variation
# explained by district covariates
, ICC.3 = 0.2 # district intraclass correlation
, omega.3 = 0 # ratio of district effect size variability
# to random effects variability
################################################## level 2: schools
, numCovar.2 = 0 # number of school covariates
, R2.2 = 0 # percent of school variation
# explained by school covariates
, ICC.2 = 0.2 # school intraclass correlation
, omega.2 = 0 # ratio of school effect size variability
# to random effects variability
################################################## level 1: individuals
, numCovar.1 = 0 # number of individual covariates
, R2.1 = 0 # percent of indiv variation explained
# by indiv covariates
)
test_that('Correlations checker runs', {
skip_on_cran()
sink("sink.txt")
# note: this is not enough simulations to check if the tool works,
# just if it runs!
set.seed(23)
cor.tstat <- check_cor(
d_m = 'd2.1_m2fr', model.params.list = model.params.list,
Tbar = 0.5, n.sims = 3
)
expect_true(nrow(cor.tstat) == 3)
expect_true(ncol(cor.tstat) == 3)
expect_true(all(!is.na(cor.tstat)))
# provide a pump object
pp <- pump_power( d_m = "d3.2_m3ff2rc",
MTP = "BF",
MDES = rep( 0.10, 3 ),
M = 3,
J = 3, # number of schools/block
K = 21, # number RA blocks
nbar = 258,
Tbar = 0.50, # prop Tx
alpha = 0.05, # significance level
numCovar.1 = 5, numCovar.2 = 3,
R2.1 = 0.1, R2.2 = 0.7,
ICC.2 = 0.05, ICC.3 = 0.4,
rho = 0.4, # how correlated outcomes are
tnum = 200
)
cor.tstat <- check_cor(
pump.object = pp, n.sims = 3
)
expect_true(nrow(cor.tstat) == 3)
expect_true(ncol(cor.tstat) == 3)
expect_true(all(!is.na(cor.tstat)))
sink()
file.remove("sink.txt")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.