You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DESCRIPTION
+13-14Lines changed: 13 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -1,21 +1,20 @@
1
1
Package: adepro
2
2
Type: Package
3
3
Title: A 'shiny' Application for the (Audio-)Visualization of Adverse Event Profiles
4
-
Version: 4.1.2
5
-
Maintainer: Bodo Kirsch <bodo.kirsch@bayer.com>
4
+
Version: 4.2.7
6
5
Authors@R: c(person(given = "Nicole",
7
-
family = "Rethemeier",
8
-
role = "aut"),
9
-
person(given = "Christoph",
10
-
family = "Tasto",
11
-
role = "aut"),
12
-
person(given = "Steffen",
13
-
family = "Jeske",
14
-
role = "aut"),
15
-
person(given = "Bodo",
16
-
family = "Kirsch",
17
-
role = "cre",
18
-
email = "bodo.kirsch@bayer.com"))
6
+
family = "Rethemeier",
7
+
role = "cre",
8
+
email = "nicole.rethemeier@bayer.com"),
9
+
person(given = "Christoph",
10
+
family = "Tasto",
11
+
role = "aut"),
12
+
person(given = "Steffen",
13
+
family = "Jeske",
14
+
role = "aut"),
15
+
person(given = "Bodo",
16
+
family = "Kirsch",
17
+
role = "aut"))
19
18
Description: Contains a 'shiny' application called AdEPro (Animation of Adverse Event Profiles) which (audio-)visualizes adverse events occurring in clinical trials. As this data is usually considered sensitive, this tool is provided as a stand-alone application that can be launched from any local machine on which the data is stored.
20
19
Depends: R (>= 3.5.0), shinyBS, seriation (>= 1.2.9)
if(!all(is.element(unique(ae_data$patient), unique(patients$ps)))) {stop("Patient IDs do not match!")}
16
16
if (any(colnames(ae_data)[1:5] != c("day_start", "day_end", "patient", "ae", "sev"))) stop("columns in ae_data are not named correctly")
17
17
if (any(!(colnames(ae_data)[-c(1:5)] %in%
18
-
c("trtem", "ser", "nonser", "studrel", "studrelser", "relprot", "resdisc", "studrelresdisc")))) stop("columns in ae_data are not named correctly")
18
+
c("trtem", "ser", "nonser", "studrel", "studrelser", "relprot", "resdisc", "studrelresdisc","replace_ae_start","replace_ae_end")))) stop("columns in ae_data are not named correctly")
19
19
if (any(colnames(patients)[1:4] != c("ps", "treat", "end", "death"))) stop("columns in patients are not named correctly")
20
20
if (!is.factor(ae_data[,4])) stop("ae_data$ae has to be of type of factor")
21
21
if (!all(c(apply(ae_data[, -4], 2, is.numeric), apply(patients[,c(1, 3, 4)], 2, is.numeric)))) stop("all variables expect 'ae', 'treat' and sorting variables have to be of type numeric")
0 commit comments