Description Usage Arguments Author(s) See Also Examples
The power_testSC
command conducts a Monte-Carlo study on the
test-power and alpha-error of a set of single-cases. The distribution
values of the Monte-Carlo sample are either specified by the user or
estimated based on actual data.
1 2 3 4 5 6 | power_testSC(
design,
stat = c("plm_level", "rand", "tauU"),
n_sim = 100,
alpha = 0.05
)
|
design |
An object created by design_rSC |
stat |
Defines the tests the power analysis is based on. The
default |
n_sim |
Number of sample studies created for the the Monte-Carlo study.
Default is |
alpha |
Alpha level used to calculate the proportion of significant
tests. Default is |
Juergen Wilbert
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Assume you want to conduct a single-case study with 15 MTs, using a highly reliable test,
## an expected level effect of \eqn{d = 1.4}, and randomized start points between MTs 5
## and 12 can you expect to identify the effect using plm or randomization test?
design <- design_rSC(
n = 1, phase.design = list(A = 6, B = 9),
rtt = 0.8, level = 1.4
)
res <- power_testSC(design, n_sim = 10)
## Would you achieve higher power by setting up a MBD with three cases?
design <- design_rSC(
n = 3, phase.design = list(A = 6, B = 9),
rtt = 0.8, level = 1.4
)
res <- power_testSC(design, n_sim = 10, stat = c("hplm_level", "rand"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.