get.boundary.pop {PoPdesign} | R Documentation |
Generate the dose escalation and de-escalation boundaries for single-agent trials.
Description
Use this function to generate the dose escalation and deescalation boundaries for single-agent trials.
Usage
get.boundary.pop(target, n, cohortsize, cutoff, K, cutoff_e)
Arguments
target |
the target DLT rate |
n |
total sample size |
cohortsize |
the cohort size |
cutoff |
the cutoff for the predictive Bayes Factor (PrBF). Users can specify either a value or a function
for cutoff. If PrBF < cutoff, we assign the next cohort of patients to an adjacent dose based on observed DLT.
Otherwise, the evidence is in favor of |
K |
number of dose levels. It is required when argument cutoff is a function that requires K. |
cutoff_e |
the cutoff for the dose exclusion rule. If |
Details
We assume that there are pre-specified dose levels of the drug of interest. Let
denote
these dose levels. The dose-limiting toxicity (DLT) is assessed as a binary outcome, experiencing
toxicity or not. The true dose toxicity is monotonically increasing as the dose level increases.
Let
be the target toxicity rate and
be the true dose-toxicity of dose level
, for
.
We formulate our hypothesis as:
indicates that
is the desired MTD so that we should stay;
reflects the current dose is
either below or above the MTD so that we should transit to a lower or upper dose level. Whether
escalate or de-escalate the dose is straightforward: if the observed toxicity rate is above the target
toxicity rate
, we de-escalate the dose; if the observed toxicity rate is below
, we escalate the dose.
With the hypothesis, the predictive Bayes factor comparing and
is given by
where is the toxicity response of the ith subject among
subjects that received dose
, for
.
denotes the sum of toxicity response. We assume that
According to the calibration of the PrBF, a decision rule based on is:
1. If
, the evidence is in favor of
and we need to retain the current dose;
2. Otherwise, we assign the next cohort of patients to an adjacent dose according to the observed
DLT
, such as:
(a) If , we escalate the dose;
(b) If , we de-escalate the dose.
For patient safety and trial efficiency, the PoP design employs a dose exclusion rule. On the one hand, if the PrBF based on the observed DLT indicates a dose is above the MTD with a certain evidence, we exclude the current dose and doses above to avoid treating patients at an overly toxic dose; on the other hand, if the PrBF implies that a dose is substantially below the MTD, we eliminate the current dose and doses below to prevent wasting patients at a subtherapeutic dose. Such a dose exclusion rule is as follow:
If , the evidence is in favor of
and:
1. If , the current dose is deemed as subtherapeutic and we exclude the current dose and lower doses;
2. If , the current dose is overly toxic and we exclude the current dose and higher doses.
Once all the doses are eliminated from further investigation, the trial is terminated early.
The selection of the cut-off value for the dose exclusion is critical for the performance of the PoP
design, because it ensure the safety of the patients and efficiency of the design by influencing
the early termination rule. The exclusion boundaries in the table above were determined using
.
Value
get.boundary.pop()
returns a list object, including the corresponding decision tables
$out.boundary
and $out.full.boundary
.
Examples
## get the dose escalation and deescalation boundaries for PoP design with
## the target DLT rate of 0.3, maximum sample size of 30, and cohort size of 3
bound <- get.boundary.pop(target=0.5, n = 15, cohortsize = 3,
cutoff=2.5,K=4,cutoff_e=5/24)
summary(bound) # get the descriptive summary of the boundary
plot(bound) # plot the flowchart of the design along with decision boundaries