Description Usage Arguments Details Value References Examples
summary_crm is used to return a dataframe of the summary of the output from applied_crm.
1 | summary_crm(x)
|
x |
An object assigned to be the output from applied_crm. |
This function takes an object of class "mtd" and produces a dataframe containing a summary of information within the object. Specifically it shows the dose levels, prior probabilities, number of evaluable patients, number of DLTs and the posterior probability estimates along with confidence/probability intervals if estimated in the underlying object.
Dataframe of the summary of the output from applied_crm.
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 | prior <- c(0.1, 0.3, 0.5)
target <- 0.2
tox <- c(0, 0, 1, 0, 1, 1)
level <- c(1, 1, 1, 2, 2, 2)
crm_obj <- applied_crm(prior, target, tox, level, no_skip_esc = TRUE, no_skip_deesc = TRUE,
global_coherent_esc = TRUE, stop_func = NULL)
summary_crm(crm_obj)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.