View source: R/select.mtd.pop.R
select.mtd.pop | R Documentation |
Select the maximum tolerated dose (MTD) when the single-agent trial is completed
select.mtd.pop(target, n.pts, n.tox)
target |
the target DLT rate |
n.pts |
a vector containing the number of patients treated at each dose level |
n.tox |
a vector containing the number of patients who experienced dose-limiting toxicity at each dose level |
select.mtd.pop()
returns (1) selected MTD ($MTD
),
(2) isotonic estimate of the DLT probablity at each dose and associated
Brunk, H., Barlow, R. E., Bartholomew, D. J. & Bremner, J. M (1972, ISBN-13: 978-0471049708).
### select the MTD for PoP trial
n <- c(4, 4, 16, 8, 0)
y <- c(0, 0, 5, 5, 0)
selmtd <- select.mtd.pop(target=0.3,n.pts=n, n.tox=y)
summary(selmtd)
plot(selmtd)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.