View source: R/next_Ivanova_continuous.R
next_Ivanova_continuous | R Documentation |
Determine the dose for the next cohort of new patients for single-agent trials that aim to find a MTD
next_Ivanova_continuous(target, eps, c_resp, n, d)
target |
the target toxicity score |
eps |
the decision criterion |
c_resp |
the list object. Each element contains continuous value for each measurement at the certain dose level |
n |
the number of patients enrolled at each dose level |
d |
the current dose level |
next_Ivanova_continuous()
returns recommended dose level for the next cohort as a numeric value
Chia-Wei Hsu, Haitao Pan, Rongji Mu
Ivanova, Anastasia, and Se Hee Kim. "Dose finding for continuous and ordinal outcomes with a monotone objective function: a unified approach." Biometrics 65, no. 1 (2009): 307-315.
target <- 1.47 eps <- 1 c_resp <- list(c(0, 0.05475884, 0.12446843, 0.10131912), c(0, 0.4716962, 0.2792428, 0.3296575), c(0, 0.3931168, 1.6116607, 0.1642561), c(0, 0.9410027, 1.6021326, 1.6115235, 1.1735981, 2.5575655, 1.6513679, 1.4269044, 0.8983843, 2.2209587), 0, 0) n <- c(3, 3, 3, 9, 0, 0) d <- 4 next_Ivanova_continuous(target = target, eps = eps, c_resp = c_resp, n = n, d = d)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.