Skip to content

Commit cb52da6

Browse files
authored
Merge pull request #2 from Boehringer-Ingelheim/dev
Dev to test
2 parents b96e7a2 + 79e0a2c commit cb52da6

13 files changed

Lines changed: 868 additions & 211 deletions

.Rbuildignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
^renv$
2+
^renv\.lock$
13
^dv.templates\.Rproj$
24
^\.Rproj\.user$
35
^.*\.Rproj$
@@ -8,3 +10,5 @@ _pkgdown.yml
810
workflows.md
911
^.lintr$
1012
.gitempty
13+
^\.lintr\.R$
14+
^docs$

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
.Rproj.user
2+
.Rprofile
23
docs/
4+
renv/
5+
renv.lock

DESCRIPTION

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dv.swimmerplot
22
Title: DaVinci Swimmer Plot Module
3-
Version: 1.1.0
3+
Version: 1.1.0-9000
44
Authors@R: c(
55
person(given = "Ming",
66
family = "Yang",
@@ -26,11 +26,11 @@ Depends: R (>= 4.1.0)
2626
Imports:
2727
checkmate,
2828
dplyr,
29-
ggforce,
3029
ggiraph,
3130
ggplot2,
3231
rlang,
33-
shiny
32+
shiny,
33+
shinyWidgets
3434
Suggests:
3535
dv.manager,
3636
jsonlite,
@@ -43,4 +43,4 @@ Suggests:
4343
xml2
4444
Remotes: boehringer-ingelheim/dv.manager@main
4545
VignetteBuilder: knitr
46-
RoxygenNote: 7.3.2
46+
RoxygenNote: 7.3.3

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# dv.swimmerplot 1.1.0-9000
2+
3+
- Added local filtering support.
4+
- Added support for text annotations.
5+
16
# dv.swimmerplot 1.1.0
27

38
- Complete reimplementation of the visualization engine

R/mock_swimmerplot_mm.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ mock_swimmerplot_mm <- function() {
8282
plot_x_label = "Study Day",
8383
plot_y_label = "Subject ID",
8484
plot_width = 10,
85-
plot_height = NULL
85+
plot_height = NULL,
86+
filter_data = "rs",
87+
filter_var = "RSORRES",
88+
filter_values = c("CR", "SD")
8689
)
8790

8891
module_list <- list(

0 commit comments

Comments
 (0)