Description Usage Arguments Details Value See Also Examples
decisiontpi
gives whether to escalate, stay or de-escalate to a level of Dose given total number of patients and total number of people experiencing toxicities in a cohort
1 2 |
pt |
Target toxicity proportion to achieve in current Dose Level (Less Toxicity means under- dosing, where as more toxicity means over - dosing) |
e1 |
Amount of variation that can be allowed to the left of the pt value to conclude that target toxicity has been achieved. Default value is 0.05. This means, that if a Posterior Toxicity (DLT) mean takes a value within the range (pt - e1, pt), toxicity for the cohort (of size >= 3) will be achieved. |
e2 |
Amount of variation that can be allowed to the right of the pt value to conclude that target toxicity has been achieved. Default value is 0.05. This means, that if a Posterior Toxicity (DLT) mean takes a value within the range (pt, pt + e2), toxicity for the cohort (of size >= 3) will be achieved. |
x |
Total Number of events (In Dose Escalation Oncology Trials, this may be defined as number of people who have experienced Dose Limiting Toxicities through administration of current Dose Level) |
n |
Trial size (In Dose Escalation Oncology Trials, this may be defined as total number of people who have been administered current Dose Level (missing responses will be excluded). Necessarily n will be greater than or equal to x |
eta |
threshold value to check if the Dose is severely toxic |
design |
Design parameter, tells us which design to use. Options are |
w |
Weight on the first Beta distribution of the mixture Prior |
a1 |
alpha parameter ( > 0) for 1st Beta distribution, must be input properly when w = 0 or 1 |
b1 |
beta parameter ( > 0) for 1st Beta distribution, must be input properly properly when w = 0 or 1 |
a2 |
alpha parameter ( > 0) for 2nd Beta distribution, will not be used if w = 0 or 1 |
b2 |
beta parameter ( > 0) for 2nd Beta distribution, will not be used if w = 0 or 1 |
decisiontpi
checks if the DLT rate within the sample at current Dose level is severely toxic. At first, it calculates the posterior distribution
of the DLT(or, Dose Limiting Toxicity) Rate based on the number of DLT 's in the sample. If the probability is too much (> eta), then the
function returns the value "DU", which implies that the Current Dose level is unacceptably toxic and can't ever be used for further administration.
If the dose is not severely toxic, then it gives us the decision rule based on the design we provide.
If we work with 'tpi' design, then the range of DLT rate, ie, [0,1], is broken up into three intervals, Under-Dosing [0, pt - e1), Target-Toxicity [pt - e1, pt + e2] and Over-Dosing (pt + e2, 1]
Then, probability for these intervals are calculated and the interval for which the probability is high, leads to the Decision- making.
For mTPI and mTPI-2 (coded as "mmtpi"
in the package), the decision making after ensuring the non-severe toxicity of the current dose level
is based on the Unit Probability Mass among the Intervals.
"E"
We should increase the current level of Dose.
"S"
We should stay at the current level of Dose and treat more patients.
"D"
We should decrease the current level of Dose.
"DU"
We should decrease the current level of Dose and we should not go beyond this Dose level for treating more patients
UPM
for definition on Unit Probability Mass, upmplot
for graphical Display of the Decision Making Criterion based on UPM
1 2 3 4 | n = 13 #must be a value >= 3
x = sample.int(n, 1)
decisiontpi(x = x, n = n, design = "mmtpi", pt = 0.4, e1 = 0.06, e2 = 0.04, eta = 0.95,
w = 0.4, a1 = 4, b1 = 3, a2 = 1, b2 = 1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.