de.bioRxiv.240846 | R Documentation |
This is a length-10 list of data frames, summarizing the simulated trial from this paper, at the end of periods 1, 2, ..., 10. This structure reflects an awkward S3 implementation that package DTAT v0.3 reimplemented using S4. This data set is retained to support regression tests.
A length-10 list of data frames, each with the following columns:
Participant identifier
DLT assessment period, numbered consecutively from 1
Dose level, numbered consecutively starting from 1
A logical indicator: did this this participant experience a DLT during this period?
A stop.esc
attribute is attached to data frames in this list,
indicating when escalation stopped during the simulated trial.
Norris DC. Precautionary Coherence Unravels Dose Escalation Designs. bioRxiv. December 2017:240846. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1101/240846")}. https://www.biorxiv.org/content/10.1101/240846v1
data(de.bioRxiv.240846)
# Demonstrate that the new S4 3+3/PC implementation reproduces the
# simulated trial from the paper:
set.seed(2017)
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)
stopifnot(all(trial@data == de.bioRxiv.240846[[10]]))
stopifnot(trial@stop_esc == attr(de.bioRxiv.240846[[10]],'stop.esc'))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.