binary_tte_sim | R Documentation |
Performs simulation for two-endpoint two-arm group sequential trials. The first endpoint is a binary endpoint and the Mantel-Haenszel test is used to test risk difference. The second endpoint is a time-to-event endpoint and the log-rank test is used to test the treatment difference. The analysis times of the first endpoint are determined by the specified calendar times, while the analysis times for the second endpoint is based on the planned number of events at each look. The binary endpoint is assessed at the first post-treatment follow-up visit.
binary_tte_sim(
kMax1 = 1L,
kMax2 = 1L,
riskDiffH0 = 0,
hazardRatioH0 = 1,
allocation1 = 1L,
allocation2 = 1L,
accrualTime = 0L,
accrualIntensity = NA_real_,
piecewiseSurvivalTime = 0L,
stratumFraction = 1L,
globalOddsRatio = 1,
pi1 = NA_real_,
pi2 = NA_real_,
lambda1 = NA_real_,
lambda2 = NA_real_,
gamma1 = 0L,
gamma2 = 0L,
delta1 = 0L,
delta2 = 0L,
upper1 = NA_real_,
upper2 = NA_real_,
accrualDuration = NA_real_,
plannedTime = NA_real_,
plannedEvents = NA_integer_,
maxNumberOfIterations = 1000L,
maxNumberOfRawDatasetsPerStage = 0L,
seed = NA_integer_
)
kMax1 |
Number of stages for the binary endpoint. |
kMax2 |
Number of stages for the time-to-event endpoint. |
riskDiffH0 |
Risk difference under the null hypothesis for the binary endpoint. |
hazardRatioH0 |
Hazard ratio under the null hypothesis for the time-to-event endpoint. |
allocation1 |
Number of subjects in the treatment group in a randomization block. Defaults to 1 for equal randomization. |
allocation2 |
Number of subjects in the control group in a randomization block. Defaults to 1 for equal randomization. |
accrualTime |
A vector that specifies the starting time of
piecewise Poisson enrollment time intervals. Must start with 0, e.g.,
|
accrualIntensity |
A vector of accrual intensities. One for each accrual time interval. |
piecewiseSurvivalTime |
A vector that specifies the starting time of
piecewise exponential survival time intervals. Must start with 0, e.g.,
|
stratumFraction |
A vector of stratum fractions that sum to 1. Defaults to 1 for no stratification. |
globalOddsRatio |
The global odds ratio of the Plackett copula. |
pi1 |
Response probabilities by stratum for the treatment group for the binary endpoint. |
pi2 |
Response probabilities by stratum for the control group for the binary endpoint. |
lambda1 |
A vector of hazard rates for the event in each analysis time interval by stratum for the treatment group for the time-to-event endpoint. |
lambda2 |
A vector of hazard rates for the event in each analysis time interval by stratum for the control group for the time-to-event endpoint. |
gamma1 |
The hazard rate for exponential dropout, a vector of hazard rates for piecewise exponential dropout applicable for all strata, or a vector of hazard rates for dropout in each analysis time interval by stratum for the treatment group. |
gamma2 |
The hazard rate for exponential dropout, a vector of hazard rates for piecewise exponential dropout applicable for all strata, or a vector of hazard rates for dropout in each analysis time interval by stratum for the control group. |
delta1 |
The hazard rate for exponential treatment discontinuation, a vector of hazard rates for piecewise exponential treatment discontinuation applicable for all strata, or a vector of hazard rates for treatment discontinuation in each analysis time interval by stratum for the treatment group for the binary endpoint. |
delta2 |
The hazard rate for exponential treatment discontinuation, a vector of hazard rates for piecewise exponential treatment discontinuation applicable for all strata, or a vector of hazard rates for treatment discontinuation in each analysis time interval by stratum for the control group for the binary endpoint. |
upper1 |
The protocol-specified treatment duration for the treatment group. |
upper2 |
The protocol-specified treatment duration for the control group. |
accrualDuration |
Duration of the enrollment period. |
plannedTime |
The calendar times for the analyses of the binary endpoint. |
plannedEvents |
The planned cumulative total number of events for the time-to-event endpoint. |
maxNumberOfIterations |
The number of simulation iterations. |
maxNumberOfRawDatasetsPerStage |
The number of raw datasets per stage to extract. |
seed |
The seed to reproduce the simulation results. The seed from the environment will be used if left unspecified. |
We consider dual primary endpoints with endpoint 1 being a binary endpoint and endpoint 2 being a time-to-event endpoint. The analyses of endpoint 1 will be based on calendar times, while the analyses of endpoint 2 will be based on the number of events. Therefor the analyses of the two endpoints are not at the same time points. The correlation between the two endpoints is characterized by the global odds ratio of the Plackett copula. In addition, the time-to-event endpoint will render the binary endpoint as a non-responder, and so does the dropout. In addition, the treatment discontinuation will impact the number of available subjects for analysis. The administrative censoring will exclude subjects from the analysis of the binary endpoint.
A list with 4 components:
sumdataBIN
: A data frame of summary data by iteration and stage
for the binary endpoint:
iterationNumber
: The iteration number.
stageNumber
: The stage number, covering all stages even if
the trial stops at an interim look.
analysisTime
: The time for the stage since trial start.
accruals1
: The number of subjects enrolled at the stage for
the treatment group.
accruals2
: The number of subjects enrolled at the stage for
the control group.
totalAccruals
: The total number of subjects enrolled at
the stage.
source1
: The total number of subjects with response status
determined by the underlying latent response variable.
source2
: The total number of subjects with response status
(non-responder) determined by experiencing the event for the
time-to-event endpoint.
source3
: The total number of subjects with response status
(non-responder) determined by dropping out prior to the PTFU1
visit.
n1
: The number of subjects included in the analysis of
the binary endpoint for the treatment group.
n2
: The number of subjects included in the analysis of
the binary endpoint for the control group.
n
: The total number of subjects included in the analysis of
the binary endpoint at the stage.
y1
: The number of responders for the binary endpoint in
the treatment group.
y2
: The number of responders for the binary endpoint in
the control group.
y
: The total number of responders for the binary endpoint
at the stage.
riskDiff
: The estimated risk difference for the binary
endpoint.
seRiskDiff
: The standard error for risk difference based on
the Sato approximation.
mnStatistic
: The Mantel-Haenszel test Z-statistic for
the binary endpoint.
sumdataTTE
: A data frame of summary data by iteration and stage
for the time-to-event endpoint:
iterationNumber
: The iteration number.
eventsNotAchieved
: Whether the target number of events
is not achieved for the iteration.
stageNumber
: The stage number, covering all stages even if
the trial stops at an interim look.
analysisTime
: The time for the stage since trial start.
accruals1
: The number of subjects enrolled at the stage for
the treatment group.
accruals2
: The number of subjects enrolled at the stage for
the control group.
totalAccruals
: The total number of subjects enrolled at
the stage.
events1
: The number of events at the stage for
the treatment group.
events2
: The number of events at the stage for
the control group.
totalEvents
: The total number of events at the stage.
dropouts1
: The number of dropouts at the stage for
the treatment group.
dropouts2
: The number of dropouts at the stage for
the control group.
totalDropouts
: The total number of dropouts at the stage.
logRankStatistic
: The log-rank test Z-statistic for
the time-to-event endpoint.
rawdataBIN
(exists if maxNumberOfRawDatasetsPerStage
is a
positive integer): A data frame for subject-level data for the binary
endpoint for selected replications, containing the following variables:
iterationNumber
: The iteration number.
stageNumber
: The stage under consideration.
analysisTime
: The time for the stage since trial start.
subjectId
: The subject ID.
arrivalTime
: The enrollment time for the subject.
stratum
: The stratum for the subject.
treatmentGroup
: The treatment group (1 or 2) for the
subject.
survivalTime
: The underlying survival time for the
time-to-event endpoint for the subject.
dropoutTime
: The underlying dropout time for the
time-to-event endpoint for the subject.
ptfu1Time
:The underlying assessment time for the
binary endpoint for the subject.
timeUnderObservation
: The time under observation
since randomization for the binary endpoint for the subject.
responder
: Whether the subject is a responder for the
binary endpoint.
source
: The source of the determination of responder
status for the binary endpoint: = 1 based on the underlying
latent response variable, = 2 based on the occurrence of
the time-to-event endpoint before the assessment time of the
binary endpoint (imputed as a non-responder), = 3 based on
the dropout before the assessment time of the binary endpoint
(imputed as a non-responder), = 4 excluded from analysis
due to administrative censoring.
rawdataTTE
(exists if maxNumberOfRawDatasetsPerStage
is a
positive integer): A data frame for subject-level data for the
time-to-event endpoint for selected replications, containing the
following variables:
iterationNumber
: The iteration number.
stageNumber
: The stage under consideration.
analysisTime
: The time for the stage since trial start.
subjectId
: The subject ID.
arrivalTime
: The enrollment time for the subject.
stratum
: The stratum for the subject.
treatmentGroup
: The treatment group (1 or 2) for the
subject.
survivalTime
: The underlying survival time for the
time-to-event endpoint for the subject.
dropoutTime
: The underlying dropout time for the
time-to-event endpoint for the subject.
timeUnderObservation
: The time under observation
since randomization for the time-to-event endpoint for the subject.
event
: Whether the subject experienced the event for the
time-to-event endpoint.
dropoutEvent
: Whether the subject dropped out for the
time-to-event endpoint.
Kaifeng Lu, kaifenglu@gmail.com
tcut = c(0, 12, 36, 48)
surv = c(1, 0.95, 0.82, 0.74)
lambda2 = (log(surv[1:3]) - log(surv[2:4]))/(tcut[2:4] - tcut[1:3])
sim1 = binary_tte_sim(
kMax1 = 1,
kMax2 = 2,
accrualTime = 0:8,
accrualIntensity = c(((1:8) - 0.5)/8, 1)*40,
piecewiseSurvivalTime = c(0,12,36),
globalOddsRatio = 1,
pi1 = 0.80,
pi2 = 0.65,
lambda1 = 0.65*lambda2,
lambda2 = lambda2,
gamma1 = -log(1-0.04)/12,
gamma2 = -log(1-0.04)/12,
delta1 = -log(1-0.02)/12,
delta2 = -log(1-0.02)/12,
upper1 = 15*28/30.4,
upper2 = 12*28/30.4,
accrualDuration = 20,
plannedTime = 20 + 15*28/30.4,
plannedEvents = c(130, 173),
maxNumberOfIterations = 1000,
maxNumberOfRawDatasetsPerStage = 1,
seed = 314159)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.