View source: R/getDesignMeans.R
getDesignMeanDiffCarryoverEquiv | R Documentation |
Obtains the power and sample size for equivalence in direct treatment effects in crossover trials accounting or without accounting for carryover effects.
getDesignMeanDiffCarryoverEquiv(
beta = NA_real_,
n = NA_real_,
trtpair = NA_real_,
carryover = TRUE,
meanDiffLower = NA_real_,
meanDiffUpper = NA_real_,
meanDiff = 0,
stDev = 1,
corr = 0.5,
design = NA_real_,
cumdrop = NA_real_,
allocationRatioPlanned = NA_real_,
normalApproximation = FALSE,
rounding = TRUE,
alpha = 0.025
)
beta |
The type II error. |
n |
The total sample size. |
trtpair |
The treatment pair of interest to power the study. If not given, it defaults to comparing the first treatment to the last treatment. |
carryover |
Whether to account for carryover effects in the power calculation. Defaults to TRUE. |
meanDiffLower |
The lower equivalence limit of mean difference for the treatment pair of interest. |
meanDiffUpper |
The upper equivalence limit of mean difference for the treatment pair of interest. |
meanDiff |
The mean difference under the alternative hypothesis, |
stDev |
The standard deviation for within-subject random error. |
corr |
The intra-subject correlation due to subject random effect. |
design |
The crossover design represented by a matrix with rows indexing the sequences, columns indexing the periods, and matrix entries indicating the treatments. |
cumdrop |
The cumulative dropout rate over periods. |
allocationRatioPlanned |
Allocation ratio for the sequences. Defaults to equal randomization if not provided. |
normalApproximation |
The type of computation of the p-values.
If |
rounding |
Whether to round up the sample size. Defaults to TRUE for sample size rounding. |
alpha |
The one-sided significance level. Defaults to 0.025. |
The linear mixed-effects model to assess the direct treatment effects in the presence of carryover treatment effects is given by
y_{ijk} = \mu + \alpha_i + b_{ij} + \gamma_k + \tau_{d(i,k)}
+ \lambda_{c(i,k-1)} + e_{ijk},
i=1,\ldots,n; j=1,\ldots,r_i; k = 1,\ldots,p; d,c = 1,\ldots,t,
where \mu
is the general mean, \alpha_i
is the effect of
the i
th treatment sequence, b_{ij}
is the random effect
with variance \sigma_b^2
for the j
th subject of the
i
th treatment sequence, \gamma_k
is the period effect,
and e_{ijk}
is the random error with variance \sigma^2
for the subject in period k
. The direct effect of the treatment
administered in period k
of sequence i
is
\tau_{d(i,k)}
, and \lambda_{c(i,k-1)}
is the carryover
effect of the treatment administered in period k-1
of sequence
i
. The value of the carryover effect for the observed
response in the first period is \lambda_{c(i,0)} = 0
since
there is no carryover effect in the first period. The intra-subject
correlation due to the subject random effect is
\rho = \frac{\sigma_b^2}{\sigma_b^2 + \sigma^2}.
Therefore, stDev
= \sigma^2
and corr
= \rho
.
By constructing the design matrix X
for the linear model with
a compound symmetry covariance matrix for the response vector of
a subject, we can obtain
Var(\hat{\beta}) = (X'V^{-1}X)^{-1}.
The covariance matrix for the direct treatment effects and carryover treatment effects can be extracted from the appropriate sub-matrices. The covariance matrix for the direct treatment effects without accounting for the carryover treatment effects can be obtained by omitting the carryover effect terms from the model.
The power is for the direct treatment effect for the treatment pair of
interest with or without accounting for carryover effects as determined
by the input parameter carryover
. The relative efficiency is
for the direct treatment effect for the treatment pair of interest
accounting for carryover effects relative to that without accounting
for carryover effects.
The degrees of freedom for the t-test accounting for carryover effects
can be calculated as the total number of observations minus
the number of subjects minus p-1
minus 2(t-1)
to account for the subject effect, period effect, and direct and
carryover treatment effects. The degrees of freedom for the t-test
without accounting for carryover effects is equal to the total number
of observations minus the number of subjects minus p-1
minus
t-1
to account for the subject effect, period effect, and direct
treatment effects.
An S3 class designMeanDiffCarryover
object with the
following components:
power
: The power to reject the null hypothesis.
alpha
: The one-sided significance level.
numberOfSubjects
: The maximum number of subjects.
trtpair
: The treatment pair of interest to power the study.
carryover
: Whether to account for carryover effects in
the power calculation.
meanDiffLower
: The lower equivalence limit of mean difference
for the treatment pair of interest.
meanDiffUpper
: The upper equivalence limit of mean difference
for the treatment pair of interest.
meanDiff
: The mean difference for the treatment pair of interest
under the alternative hypothesis.
stDev
: The standard deviation for within-subject random error.
corr
: The intra-subject correlation due to subject random effect.
design
: The crossover design represented by a matrix with
rows indexing the sequences, columns indexing the periods, and
matrix entries indicating the treatments.
designMatrix
: The design matrix accounting for intercept,
sequence, period, direct treatment effects and carryover treatment
effects when carryover = TRUE
, or the design matrix
accounting for intercept, sequence, period, and direct treatment
effects when carryover = FALSE
.
nseq
: The number of sequences.
nprd
: The number of periods.
ntrt
: The number of treatments.
cumdrop
: The cumulative dropout rate over periods.
V_direct_only
: The covariance matrix for direct treatment
effects without accounting for carryover effects. The treatment
comparisons for the covariance matrix are for the first t-1
treatments relative to the last treatment.
V_direct_carry
: The covariance matrix for direct and
carryover treatment effects.
v_direct_only
: The variance of the direct treatment effect for
the treatment pair of interest without accounting for carryover
effects.
v_direct
: The variance of the direct treatment effect for
the treatment pair of interest accounting for carryover effects.
v_carry
: The variance of the carryover treatment effect for
the treatment pair of interest.
releff_direct
: The relative efficiency of the design
for estimating the direct treatment effect for the treatment pair
of interest after accounting for carryover effects with respect to
that without accounting for carryover effects. This is equal to
v_direct_only/v_direct
.
releff_carry
: The relative efficiency of the design
for estimating the carryover effect for the treatment pair
of interest. This is equal to v_direct_only/v_carry
.
allocationRatioPlanned
: Allocation ratio for the sequences.
normalApproximation
: The type of computation of the p-values.
If TRUE
, the variance is assumed to be known, otherwise
the calculations are performed with the t distribution.
rounding
: Whether to round up the sample size.
Kaifeng Lu, kaifenglu@gmail.com
Robert O. Kuehl. Design of Experiments: Statistical Principles of Research Design and Analysis. Brooks/Cole: Pacific Grove, CA. 2000.
# Williams design for 4 treatments
(design1 = getDesignMeanDiffCarryoverEquiv(
beta = 0.2, n = NA,
meanDiffLower = -1.3, meanDiffUpper = 1.3,
meanDiff = 0, stDev = 2.2,
design = matrix(c(1, 4, 2, 3,
2, 1, 3, 4,
3, 2, 4, 1,
4, 3, 1, 2),
4, 4, byrow = TRUE),
alpha = 0.025))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.