Skip to content

Commit d2a34eb

Browse files
committed
choree: supress message
1 parent c28351d commit d2a34eb

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

R/tm_missing_data.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
#' This module generates the following objects, which can be modified in place using decorators:
2323
#' - `summary_plot` (`grob` created with [ggplot2::ggplotGrob()])
2424
#' - `combination_plot` (`grob` created with [ggplot2::ggplotGrob()])
25-
#' - `by_subject_plot` (`ggplot2`)
26-
#' - `table` (`datatable` created with [DT::datatable()])
25+
#' - `by_subject_plot` (`ggplot`)
26+
#' - `table` (`datatables` created with [DT::datatable()])
2727
#'
2828
#' A Decorator is applied to the specific output using a named list of `teal_transform_module` objects.
2929
#' The name of this list corresponds to the name of the output to which the decorator is applied.

vignettes/decorate-module-output.Rmd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ quickly iterate the decoration you want.
6969
Here's an example to showcase how you can edit an output of class `ElementaryTable`.
7070
`rtables` modifiers like `rtables::insert_rrow` can be applied to modify this object.
7171

72-
```{r decorate_ElementaryTable}
72+
```{r decorate_ElementaryTable, message=FALSE}
7373
library(teal.modules.general)
7474
7575
data <- teal_data(join_keys = default_cdisc_join_keys[c("ADSL", "ADRS")])
@@ -155,7 +155,7 @@ knitr::include_url(url, height = "800px")
155155
Here's an example to showcase how you can edit an output of class `ggplot`.
156156
You can extend them using `ggplot2` functions.
157157

158-
```{r decorate_ggplot}
158+
```{r decorate_ggplot, message=FALSE}
159159
library(teal.modules.general)
160160
161161
data <- teal_data(join_keys = default_cdisc_join_keys[c("ADSL", "ADRS")])
@@ -239,7 +239,7 @@ knitr::include_url(url, height = "800px")
239239
Here's an example to showcase how you can edit an output of class `grob`.
240240
You can extend them using `grid` and `gridExtra` functions.
241241

242-
```{r decorate_grob}
242+
```{r decorate_grob, message=FALSE}
243243
library(teal.modules.general)
244244
245245
data <- teal_data(join_keys = default_cdisc_join_keys[c("ADSL", "ADRS")])
@@ -430,7 +430,7 @@ knitr::include_url(url, height = "800px")
430430
Here's an example to showcase how you can edit an output of class `trellis`.
431431
`rtables` modifiers like `rtables::insert_rrow` can be applied to modify this object.
432432

433-
```{r decorate_trellis}
433+
```{r decorate_trellis, message=FALSE}
434434
library(teal.modules.general)
435435
436436
data <- teal_data(join_keys = default_cdisc_join_keys[c("ADSL", "ADRS")])

0 commit comments

Comments
 (0)