-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Norris
authored and
David Norris
committed
Jan 12, 2021
1 parent
8b0d1ad
commit 49265b1
Showing
8 changed files
with
117 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
Package: precautionary | ||
Type: Package | ||
Title: Safety Diagnostics for Dose-Escalation Trial Designs | ||
Version: 0.2-0 | ||
Date: 2020-12-14 | ||
Version: 0.2-1 | ||
Date: 2021-01-12 | ||
Authors@R: c(person("David C.", "Norris" | ||
, role = c("aut", "cre", "cph") | ||
, email = "[email protected]" | ||
|
@@ -18,15 +18,16 @@ Depends: | |
magrittr, | ||
escalation, | ||
data.table, | ||
R (>= 2.10) | ||
R (>= 3.5.0) | ||
Imports: methods, dplyr, rlang, stringr, knitr, kableExtra | ||
Suggests: | ||
rmarkdown, | ||
bookdown, | ||
tufte, | ||
testthat, | ||
lattice, | ||
latticeExtra | ||
latticeExtra, | ||
dtpcrm | ||
Description: Enhances various R packages that support the design and simulation | ||
of phase 1 dose-escalation trials, adding diagnostics to examine | ||
the safety characteristics of these designs in light of expected | ||
|
@@ -43,8 +44,10 @@ Encoding: UTF-8 | |
NeedsCompilation: no | ||
RoxygenNote: 7.1.1 | ||
Collate: | ||
'data.R' | ||
'enhance.R' | ||
'exact.R' | ||
'precautionary-package.R' | ||
'toxicity_generators.R' | ||
'simulate_trials.R' | ||
LazyData: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
YEAR: 2020 | ||
YEAR: 2020,2021 | ||
COPYRIGHT HOLDER: David C. Norris |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#' Complete dose transition pathways (DTP) table for the VIOLA trial. | ||
#' | ||
#' This data set caches a long computation (17 minutes on a 2.6GHz i7) | ||
#' needed to build one package vignette. | ||
#' | ||
#' @format A data frame with 4^7 = 16384 rows and 15 columns, each row | ||
#' representing one possible path the trial could take: | ||
#' \describe{ | ||
#' \item{D0}{Initial dose level} | ||
#' \item{T1}{Number of toxicities observed in first cohort} | ||
#' \item{D1}{Dose recommendation after the first cohort} | ||
#' \item{T2}{Number of toxicities observed in second cohort} | ||
#' \item{D2}{Dose recommendation after the second cohort} | ||
#' \item{T3}{Number of toxicities observed in third cohort} | ||
#' \item{D3}{Dose recommendation after the third cohort} | ||
#' \item{T4}{Number of toxicities observed in fourth cohort} | ||
#' \item{D4}{Dose recommendation after the fourth cohort} | ||
#' \item{T5}{Number of toxicities observed in fifth cohort} | ||
#' \item{D5}{Dose recommendation after the fifth cohort} | ||
#' \item{T6}{Number of toxicities observed in sixth cohort} | ||
#' \item{D6}{Dose recommendation after the sixth cohort} | ||
#' \item{T7}{Number of toxicities observed in seventh cohort} | ||
#' \item{D7}{Dose recommendation after the seventh cohort} | ||
#' } | ||
#' | ||
#' @seealso | ||
#' Documentation of the \code{\link[dtpcrm]{calculate_dtps}} function. | ||
#' | ||
"viola_dtp" |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters