dose.survfit | R Documentation |
The 'dose-survival curve' is nothing other than an empirical cumulative distribution for MTDi in the sampled population. The term 'survival' is suggested in part by our application of the Kaplan-Meier estimator to interval-censored toxicity information.
dose.survfit(de, method = "rothman", avoid.degeneracy = TRUE, conf.level = 0.8)
de |
A dose titration experiment like the |
method |
The method to be used by |
avoid.degeneracy |
When TRUE, this parameter directs the function to introduce artificial events into the dose titration experiment, to avoid degeneracies at the lower and upper ends of the dose-survival curve. |
conf.level |
Confidence level for KM confidence band. |
TODO: Describe details of degeneracy avoidance, once these have stabilized.
An object of class survfit
.
David C. Norris
dose.survival
, km.ci
CV <- 0.7; mean_mtd <- 1.0
shape <- CV^-2; scale <- mean_mtd/shape
trial <- new("DE", doses=0.25 * 1.4^(0:6),
MTDi=rgamma(24, shape=shape, scale=scale),
units="mg")
trial <- titration(trial, periods=10)
sf <- dose.survfit(trial@data)
summary(sf)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.