-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDESCRIPTION
137 lines (137 loc) · 4.2 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
Package: crmPack
Title: Object-Oriented Implementation of CRM Designs
Version: 2.0.0.9002
Authors@R: c(
person("Daniel", "Sabanes Bove", , "[email protected]", role = c("aut", "cre")),
person("Wai", "Yin Yeung", , "[email protected]", role = "aut"),
person("Burak Kuersad", "Guenhan", , "[email protected]", role = "aut"),
person("Giuseppe", "Palermo", , "[email protected]", role = "aut"),
person("Thomas", "Jaki", , "[email protected]", role = "aut"),
person("Jiawen", "Zhu", , "[email protected]", role = "aut"),
person("Ziwei", "Liao", , "[email protected]", role = "aut"),
person("Dimitris", "Kontos", , "[email protected]", role = "aut"),
person("Marlene", "Schulte-Goebel", , "[email protected]", role = "aut"),
person("Doug", "Kelkhoff", , "[email protected]", role = "aut",
comment = c(ORCID = "0009-0003-7845-4061")),
person("Oliver", "Boix", , "[email protected]", role = "aut"),
person("Robert", "Adams", , "[email protected]", role = "aut"),
person("Clara", "Beck", , "[email protected]", role = "aut"),
person("John", "Kirkpatrick", , "[email protected]", role = "aut"),
person("F. Hoffmann-La Roche AG", role = c("cph", "fnd")),
person("Merck Healthcare KGaA", role = c("cph", "fnd")),
person("Bayer AG", role = c("cph", "fnd"))
)
Description: Implements a wide range of model-based dose escalation
designs, ranging from classical and modern continual reassessment
methods (CRMs) based on dose-limiting toxicity endpoints to
dual-endpoint designs taking into account a biomarker/efficacy
outcome. The focus is on Bayesian inference, making it very easy to
setup a new design with its own JAGS code. However, it is also
possible to implement 3+3 designs for comparison or models with
non-Bayesian estimation. The whole package is written in a modular
form in the S4 class system, making it very flexible for adaptation to
new models, escalation or stopping rules. Further details are
presented in Sabanes Bove et al. (2019) <doi:10.18637/jss.v089.i10>.
License: GPL (>= 2)
URL: https://github.com/openpharma/crmPack,
https://openpharma.github.io/crmPack/
BugReports: https://github.com/openpharma/crmPack/issues
Depends:
ggplot2 (>= 2.0.0),
graphics,
R (>= 3.5.0)
Imports:
checkmate (>= 2.2.0),
dplyr,
futile.logger,
GenSA,
gridExtra,
kableExtra,
knitr,
lifecycle,
magrittr,
methods,
mvtnorm,
parallel,
parallelly,
rjags,
rlang,
survival,
tibble,
tidyselect (>= 1.2.0),
tools,
utils
Suggests:
bookdown,
broom,
covr,
data.tree,
ggmcmc,
quarto (>= 1.4),
rmarkdown,
stringr,
testthat (>= 3.0.0),
tidyr,
vdiffr,
withr
VignetteBuilder:
knitr,
quarto
Config/testthat/edition: 3
Encoding: UTF-8
Language: en-US
LazyLoad: yes
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
Collate:
'CrmPackClass-class.R'
'CrmPackClass-methods.R'
'Data-validity.R'
'helpers.R'
'Data-class.R'
'helpers_data.R'
'Data-methods.R'
'Rules-validity.R'
'Rules-class.R'
'ModelParams-validity.R'
'ModelParams-class.R'
'Model-validity.R'
'helpers_jags.R'
'Model-class.R'
'Design-validity.R'
'Design-class.R'
'McmcOptions-validity.R'
'McmcOptions-class.R'
'McmcOptions-methods.R'
'Samples-validity.R'
'Samples-class.R'
'logger.R'
'helpers_covr.R'
'mcmc.R'
'Simulations-validity.R'
'Simulations-class.R'
'helpers_broom.R'
'helpers_rules.R'
'Model-methods.R'
'checkmate.R'
'Rules-methods.R'
'Design-methods.R'
'fromQuantiles.R'
'Samples-methods.R'
'Simulations-methods.R'
'crmPack-package.R'
'helpers_design.R'
'helpers_knitr.R'
'helpers_knitr_CohortSize.R'
'helpers_knitr_Design.R'
'helpers_knitr_GeneralData.R'
'helpers_knitr_GeneralModel.R'
'helpers_knitr_Increments.R'
'helpers_knitr_NextBest.R'
'helpers_knitr_SafetyWindow.R'
'helpers_knitr_Stopping.R'
'helpers_model.R'
'helpers_samples.R'
'helpers_simulations.R'
'utils-pipe.R'
'utils.R'