CFO2d.selectmtd {CFO} | R Documentation |
Select the maximum tolerated dose (MTD) for the real drug combination trial
Description
Select the maximum tolerated dose (MTD) when the real drug combination trial is completed
Usage
CFO2d.selectmtd(target, npts, ntox,
prior.para = list(alp.prior = target, bet.prior = 1 - target),
cutoff.eli = 0.95, early.stop = 0.95, verbose = TRUE)
Arguments
target |
the target DLT rate. |
npts |
a matrix containing the number of patients treated at each dose level. |
ntox |
a matrix containing the number of patients who experienced DLT at each dose level. |
prior.para |
the prior parameters for a beta distribution, where set as |
cutoff.eli |
the cutoff to eliminate overly toxic doses for safety. We recommend
the default value of |
early.stop |
the threshold value for early stopping. The default value |
verbose |
set |
Details
CFO2d.selectmtd()
selects the MTD based on isotonic estimates of toxicity
probabilities. CFO2d.selectmtd()
selects as the MTD dose j^*
, for which the
isotonic estimate of the DLT rate is closest to the target. If there
are ties, we select from the ties the highest dose level when the estimate
of the DLT rate is smaller than the target, or the lowest dose level
when the estimate of the DLT rate is greater than the target. The
isotonic estimates are obtained by the pooled-adjacent-violators algorithm
(PAVA).
Value
CFO2d.selectmtd()
returns
target: the target DLT rate.
MTD: the selected MTD.
MTD = (99, 99)
indicates that all tested doses are overly toxic.p_est: the isotonic estimate of the DLT probablity at each dose and associated
95\%
credible interval.p_est = NA
if all tested doses are overly toxic.p_est_CI: the credible interval for the isotonic estimate.
p_est_CI = NA
if all tested doses are overly toxic.
Note
The MTD selection and dose escalation/deescalation rule are two independent components of the trial design. Isotonic regression is employed to select the MTD after the completion of the trial. When appropriate, another dose selection procedure (e.g., based on a fitted logistic model) can be used to select the MTD after the completion of the trial using the 2dCFO design.
Author(s)
Jialu Fang, Wenliang Wang, and Guosheng Yin
References
Jin H, Yin G (2022). CFO: Calibration-free odds design for phase I/II clinical trials.
Statistical Methods in Medical Research, 31(6), 1051-1066.
Wang W, Jin H, Zhang Y, Yin G (2023). Two-dimensional calibration-free odds (2dCFO)
design for phase I drug-combination trials. Frontiers in Oncology, 13, 1294258.
Bril G, Dykstra R, Pillers C, Robertson T (1984). Algorithm AS 206: Isotonic regression in two independent variables.
Journal of the Royal Statistical Society. Series C (Applied Statistics), 33(3), 352–357.
Examples
ntox <- matrix(c(0, 0, 2, 0, 0,
0, 2, 7, 0, 0,
0, 2, 0, 0, 0),
nrow = 3, ncol = 5, byrow = TRUE)
npts <- matrix(c(3, 0, 12, 0, 0,
3, 12, 24, 0, 0,
3, 3, 0, 0, 0),
nrow = 3, ncol = 5, byrow = TRUE)
selmtd <- CFO2d.selectmtd(target=0.3, npts=npts, ntox=ntox)
summary(selmtd)
plot(selmtd)