This R Markdown document provides an example for analysing trials with a continuous endpoint and sample size reassessment using rpact.
First, load the rpact package
## [1] '3.2.1'
Since we want to illustrate a design where at interim stages we are able to perform data-driven sample size adaptations, we use the inverse normal combination test for combining the \(p\)-values from the stages of the trial. We want to use a three stage design with O`Brien and Fleming boundaries and additionally want to consider futility bounds -0.5 and 0.5 for the test statistics at the interim stages. Accordingly,
# Example of an inverse normal combination test:
designIN <- getDesignInverseNormal(futilityBounds = c(-0.5, 0.5))
defines the design to be used for this purpose. By default, this is a design with equally spaced information rates and one sided \(\alpha = 0.025\). The critical values can be displayed on the \(z\)-value or the \(p\)-value scale:
Note that we are using non-binding futility bounds that do not affect the boundaries for the rejection of the null hypothesis. It does have an effect, however, on the calculation of the conditional power.
By the use of the function getDesignInverseNormal()
the way to analyse the
data is fixed. With this definition, the unweighted inverse normal combination
test is used, i.e., the stage results are combined through the use on the
inverse normal combination test statistics
\[\frac{\Phi^{-1}(1 - p_1) + \Phi^{-1}(1 - p_2)}{\sqrt{2}} \text{ and }\frac{\Phi^{-1}(1 - p_1) + \Phi^{-1}(1 - p_2)+ \Phi^{-1}(1 - p_3)}{\sqrt{3}}\]
for the second and the third (final) stage of the trial, respectively.
In rpact, the way of using data for adaptive analysis is through summary
statistics that summarize the data from the separate stages. Generally, the
function getDataset()
is used and depending on which summary statistics are
entered, rpact knows the type of endpoint and the number of treatment groups.
For testing means in a two-treatment parallel group design, means1
, means2
,
stDevs1
, stDevs2
, n1
, and n2
must be defined as vectors of length of
the observed interim stages.
As an example, assume that the following results in the control and the experimental treatment arm were obtained for the first and the second stage of the trial.
First stage:
arm | n | mean | std |
---|---|---|---|
experimental | 34 | 112.3 | 44.4 |
control | 37 | 98.1 | 46.7 |
Second stage:
arm | n | mean | std |
---|---|---|---|
experimental | 31 | 113.1 | 42.9 |
control | 33 | 99.3 | 41.1 |
Here, sample size, mean and standard deviation were obtained separately from the stages. Enter these results as follows to obtain a dataset object in rpact:
datasetExample <- getDataset(
means1 = c(112.3, 113.1),
means2 = c(98.1, 99.3),
stDevs1 = c(44.4, 42.9),
stDevs2 = c(46.7, 41.1),
n1 = c(34, 31),
n2 = c(37, 33))
The object datasetExample
also contains the overall results which were
calculated from the separate stage results:
## Dataset of means:
## Stages : 1, 1, 2, 2
## Treatment groups : 1, 2, 1, 2
## Sample sizes : 34, 37, 31, 33
## Means : 112.3, 98.1, 113.1, 99.3
## Standard deviations : 44.4, 46.7, 42.9, 41.1
##
## Calculated data:
## Cumulative sample sizes : 34, 37, 65, 70
## Cumulative means : 112.30, 98.10, 112.68, 98.67
## Cumulative standard deviations : 44.40, 46.70, 43.35, 43.84
You might alternatively enter the overall results by specifying
overallMeans1
, overallMeans2
, overallStDevs1
, overallStDevs2
, overallN1
, and overallN2
:
getDataset(
overallMeans1 = c(112.3, 112.68),
overallMeans2 = c(98.1, 98.67),
overallStDevs1 = c(44.4, 43.35),
overallStDevs2 = c(46.7, 43.84),
overallN1 = c(34, 65),
overallN2 = c(37, 70))
## Dataset of means:
## Stages : 1, 1, 2, 2
## Treatment groups : 1, 2, 1, 2
## Cumulative sample sizes : 34, 37, 65, 70
## Cumulative means : 112.30, 98.10, 112.68, 98.67
## Cumulative standard deviations : 44.40, 46.70, 43.35, 43.84
##
## Calculated data:
## Sample sizes : 34.0, 37.0, 31.0, 33.0
## Means : 112.30, 98.10, 113.10, 99.31
## Standard deviations : 44.40, 46.70, 42.90, 41.11
The easiest way to obtain the analysis results is through the function getAnalysisResults()
,
where design
and dataInput
needs to be specified. In our case,
does the job, and the output is
## Analysis results (means of 2 groups, inverse normal combination test design):
##
## Design parameters:
## Fixed weights : 0.577, 0.577, 0.577
## Critical values : 3.471, 2.454, 2.004
## Futility bounds (non-binding) : -0.500, 0.500
## Cumulative alpha spending : 0.0002592, 0.0071601, 0.0250000
## Local one-sided significance levels : 0.0002592, 0.0070554, 0.0225331
## Significance level : 0.0250
## Test : one-sided
##
## User defined parameters: not available
##
## Default parameters:
## Normal approximation : FALSE
## Direction upper : TRUE
## Theta H0 : 0
## Equal variances : TRUE
##
## Stage results:
## Cumulative effect sizes : 14.20, 14.02, NA
## Cumulative (pooled) standard deviations : 45.61, 43.60, NA
## Stage-wise test statistics : 1.310, 1.314, NA
## Stage-wise p-values : 0.09721, 0.09680, NA
## Combination test statistics : 1.298, 1.837, NA
##
## Analysis results:
## Assumed standard deviation : 43.6
## Actions : continue, continue, NA
## Conditional rejection probability : 0.06767, 0.19121, NA
## Conditional power : NA, NA, NA
## Repeated confidence intervals (lower) : -25.271, -4.803, NA
## Repeated confidence intervals (upper) : 53.67, 32.80, NA
## Repeated p-values : 0.29776, 0.07854, NA
## Final stage : NA
## Final p-value : NA, NA, NA
## Final CIs (lower) : NA, NA, NA
## Final CIs (upper) : NA, NA, NA
## Median unbiased estimate : NA, NA, NA
We note that the variable stage
needs not to be specified because it is
actually obtained from the data. You might, however, specify stage = 1
in
order to obtain the results for the first stage only.
The inverse normal combination test statistic is calculated to be 1.837 which is smaller than 2.454. Hence, the hypothesis cannot be rejected, which is also reflected in the repeated \(p\)-value = 0.0785 larger than \(\alpha = 0.025\) and the lower bound of the repeated confidence interval = -4.803 being smaller than 0 (i.e., the RCI contains the null hypothesis value).
The conditional power is calculated if nPlanned
is specified. nPlanned
contains the sample size of the remaining separate stages for both treatment
groups and is a vector with that length. For example, if we specify
nPlanned = 60
, the conditional power is calculated for a total of 60 patients
in the 2 treatment groups for the final stage with equal allocation between
the treatment groups (the latter can be changed with allocationRatioPlanned
which is 1 by default).
yields the following output:
## Analysis results (means of 2 groups, inverse normal combination test design):
##
## Design parameters:
## Fixed weights : 0.577, 0.577, 0.577
## Critical values : 3.471, 2.454, 2.004
## Futility bounds (non-binding) : -0.500, 0.500
## Cumulative alpha spending : 0.0002592, 0.0071601, 0.0250000
## Local one-sided significance levels : 0.0002592, 0.0070554, 0.0225331
## Significance level : 0.0250
## Test : one-sided
##
## User defined parameters:
## Planned sample size : NA, NA, 60
##
## Default parameters:
## Normal approximation : FALSE
## Direction upper : TRUE
## Theta H0 : 0
## Planned allocation ratio : 1
## Equal variances : TRUE
##
## Stage results:
## Cumulative effect sizes : 14.20, 14.02, NA
## Cumulative (pooled) standard deviations : 45.61, 43.60, NA
## Stage-wise test statistics : 1.310, 1.314, NA
## Stage-wise p-values : 0.09721, 0.09680, NA
## Combination test statistics : 1.298, 1.837, NA
##
## Analysis results:
## Assumed standard deviation : 43.6
## Actions : continue, continue, NA
## Conditional rejection probability : 0.06767, 0.19121, NA
## Conditional power : NA, NA, 0.6449
## Repeated confidence intervals (lower) : -25.271, -4.803, NA
## Repeated confidence intervals (upper) : 53.67, 32.80, NA
## Repeated p-values : 0.29776, 0.07854, NA
## Final stage : NA
## Final p-value : NA, NA, NA
## Final CIs (lower) : NA, NA, NA
## Final CIs (upper) : NA, NA, NA
## Median unbiased estimate : NA, NA, NA
The conditional power 0.645 is not very
large and so a sample size increase might be appropriate. This conditional power
calculation, however, is performed with the observed effect and observed
standard deviation and so it might be reasonable to take a look at the effect
size and its variability. This is graphically illustrated by the plot of the
conditional power and the likelihood function over a range of alternative
values. E.g., specify thetaRange = c(0,30)
and obtain the graph below.