- label
(character(1)
) Label shown in the navigation item for the module or module group.
For modules()
defaults to "root"
. See Details
.
- plot_height
(numeric
) optional, specifies the plot height as a three-element vector of
value
, min
, and max
intended for use with a slider UI element.
- plot_width
(numeric
) optional, specifies the plot width as a three-element vector of
value
, min
, and max
for a slider encoding the plot width.
- datanames
(character
) Names of the datasets relevant to the item.
There are 2 reserved values that have specific behaviors:
The keyword "all"
includes all datasets available in the data passed to the teal application.
NULL
hides the sidebar panel completely.
If transformators
are specified, their datanames
are automatically added to this datanames
argument.
- parent_dataname
(character(1)
) Specifies the parent dataset name. Default is ADSL
for CDISC
data.
If provided and exists, enables additional analysis "by subject". For non-CDISC
data, this parameter can be
ignored.
- ggtheme
(character
) optional, specifies the default ggplot2
theme for plots. Defaults to classic
.
- ggplot2_args
(ggplot2_args
) optional, object created by teal.widgets::ggplot2_args()
with settings for all the plots or named list of ggplot2_args
objects for plot-specific settings. The argument is merged with options variable teal.ggplot2_args
and default module setup.
List names should match the following: c("default", "Summary Obs", "Summary Patients", "Combinations Main", "Combinations Hist", "By Subject")
.
For more details see the vignette: vignette("custom-ggplot2-arguments", package = "teal.widgets")
.
- pre_output
(shiny.tag
) optional, text or UI element to be displayed before the module's output,
providing context or a title.
with text placed before the output to put the output into context. For example a title.
- post_output
(shiny.tag
) optional, text or UI element to be displayed after the module's output,
adding context or further instructions. Elements like shiny::helpText()
are useful.
- transformators
(list
of teal_transform_module
) that will be applied to transform module's data input.
To learn more check vignette("transform-input-data", package = "teal")
.
- decorators
(named list
of lists of teal_transform_module
) optional,
decorator for tables or plots included in the module output reported.
The decorators are applied to the respective output objects.
See section "Decorating Module" below for more details.