Description Usage Arguments Value References Examples
View source: R/simulation_titecrm.R
applied_titecrm_sim is used to simulate trials using the time-to-event continual reassessment method with specified design options to determine the operating characteristics.
1 2 3 | applied_titecrm_sim(true_tox, prior, target, max_sample_size,
first_dose, num_sims, cohort_size = 1, obswin, minfu, recrate, dose_func
= applied_titecrm, ...)
|
true_tox |
A vector of 'true' underlying rates of toxicity for each of the dose levels. |
prior |
A vector of prior estimates of toxicity probabilties for the dose levels. |
target |
The target DLT rate. |
max_sample_size |
The maximum number of subjects to be recruited in any simulation. |
first_dose |
The first dose level to tested. |
num_sims |
The total number of simulations to be run. |
cohort_size |
The size of the subject cohorts. Default is 1. |
obswin |
The observation period for total subject follow up. |
minfu |
The minimum amount of follow-up required for each subjects. |
recrate |
The number of subjects recruited per obswin. |
dose_func |
The function to be employed in executing the CRM. Default is applied_titecrm. |
... |
Any other arguements detailed in dtp::applied_titecrm. |
A list containg two further lists. The first of these lists contains the operating charateristics of the design, the second contains the underlying data for each of the simulation iterations.
O'Quigley, J. O., Pepe, M., and Fisher, L. (1990). Continual reassessment method: A practical design for phase I clinical trials in cancer. Biometrics 46:33-48.
Cheung, Y. K. (2011). Dose Finding by the Continual Reassessment Method. New York: Chapman & Hall/CRC Press.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # It may take quite long for large num_sims
prior <- c(0.1, 0.3, 0.5)
target <- 0.2
true_tox <- c(0.05, 0.2, 0.35)
first_dose <- 1
num_sims <- 5 # recommend doing 5000 simulations for the final design
obswin = 80
applied_titecrm_sim(true_tox = true_tox, prior = prior, target = target,
max_sample_size = 21, first_dose = first_dose,
num_sims = num_sims, cohort_size = 3,
obswin = obswin, minfu = 20, recrate = 3,
dose_func = applied_titecrm)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.