get_mtpi {escalation}R Documentation

Get an object to fit the mTPI dose-finding model.

Description

The modified toxicity probability interval (mTPI)is a dose-escalation design by Ji et al. As the name suggests, it is an adaptation of the TPI design.

Usage

get_mtpi(
  parent_selector_factory = NULL,
  num_doses,
  target,
  epsilon1,
  epsilon2,
  exclusion_certainty,
  alpha = 1,
  beta = 1,
  ...
)

Arguments

parent_selector_factory

Object of type selector_factory.

num_doses

Number of doses under investigation.

target

We seek a dose with this probability of toxicity.

epsilon1

This parameter determines the lower bound of the equivalence interval. See Details.

epsilon2

This parameter determines the upper bound of the equivalence interval. See Details.

exclusion_certainty

Numeric, threshold posterior certainty required to exclude a dose for being excessively toxic. The authors discuss values in the range 0.7 - 0.95. Set to a value > 1 to suppress the dose exclusion mechanism. The authors use the Greek letter xi for this parameter.

alpha

First shape parameter of the beta prior distribution on the probability of toxicity.

beta

Second shape parameter of the beta prior distribution on the probability of toxicity.

...

Extra args are passed onwards.

Value

an object of type selector_factory that can fit the TPI model to outcomes.

Details

The design seeks a dose with probability of toxicity pip_{i} close to a target probability pTp_{T} by iteratively calculating the interval

pTϵ1<pi<pT+ϵ2p_{T} - \epsilon_{1} < p_{i} < p_{T} + \epsilon_{2}

In this model, ϵ1\epsilon_{1} and ϵ2\epsilon_{2} are specified constants. pip_{i} is estimated by a Bayesian beta-binomial conjugate model

pidataBeta(α+x1,β+nixi),p_{i} | data \sim Beta(\alpha + x_{1}, \beta + n_{i} - x_{i}),

where xix_{i} is the number of toxicities observed and nin_{i} is the number of patients treated at dose ii, and α\alpha and β\beta are hyperparameters for the beta prior on pip_{i}. A dose is excluded as inadmissible if

P(pi>pTdata)>ξP(p_{i} > p_{T} | data) > \xi

The trial commences at a starting dose, possibly dose 1. If dose ii has just been evaluated in patient(s), dose selection decisions proceed by calculating the unit probability mass of the true toxicity rate at dose ii using the partition of the probability space pi<pTϵ1p_{i} < p_{T} - \epsilon_{1}, pTϵ1<pi<pT+ϵ2p_{T} - \epsilon_{1} < p_{i} < p_{T} + \epsilon_{2}, and pi>pT+ϵ2p_{i} > p_{T} + \epsilon_{2}. The unit probability mass (UPM) of an interval is the posterior probability that the true toxicity rate belongs to the interval divided by the width of the interval. The interval with maximal UPM determines the recommendation for the next patient(s), with the intervals corresponding to decisions tp escalate, stay, and de-escalate dose, respectively. Further to this are rules that prevent escalation to an inadmissible dose. In their paper, the authors demonstrate acceptable operating performance using α=β=1\alpha = \beta = 1, K1=1K_{1} = 1, K2=1.5K_{2} = 1.5 and ξ=0.95\xi = 0.95. See the publications for full details.

References

Ji, Y., Liu, P., Li, Y., & Bekele, B. N. (2010). A modified toxicity probability interval method for dose-finding trials. Clinical Trials, 7(6), 653-663. https://doi.org/10.1177/1740774510382799

Ji, Y., & Yang, S. (2017). On the Interval-Based Dose-Finding Designs, 1-26. Retrieved from https://arxiv.org/abs/1706.03277

Examples

target <- 0.25
model1 <- get_mtpi(num_doses = 5, target = target, epsilon1 = 0.05,
  epsilon2 = 0.05, exclusion_certainty = 0.95)

outcomes <- '1NNN 2NTN'
model1 %>% fit(outcomes) %>% recommended_dose()


[Package escalation version 0.1.10 Index]