dataname |
(character ) analysis data used in teal module.
|
strata |
use the group_var parameter instead.
|
x |
(string ) x-variable name.
|
y |
(string ) y-variable name.
|
y_unit |
(string or NA ) y-axis unit variable name.
|
paramcd |
(string or NA ) parameter code variable name.
|
param |
(character ) parameter to filter the data by.
|
mid |
(character or NULL ) names of the statistics that will be plotted as midpoints.
All the statistics indicated in mid variable must be present in the object returned by sfun ,
and be of a double or numeric type vector of length one.
|
interval |
(character or NULL ) names of the statistics that will be plotted as intervals.
All the statistics indicated in interval variable must be present in the object returned by sfun ,
and be of a double or numeric type vector of length two. Set interval = NULL if intervals should not be
added to the plot.
|
whiskers |
(character ) names of the interval whiskers that will be plotted. Names must match names
of the list element interval that will be returned by sfun (e.g. mean_ci_lwr element of
sfun(x)[["mean_ci"]] ). It is possible to specify one whisker only, or to suppress all whiskers by setting
interval = NULL .
|
table |
(character or NULL ) names of the statistics that will be displayed in the table below the plot.
All the statistics indicated in table variable must be present in the object returned by sfun .
|
mid_type |
(string ) controls the type of the mid plot, it can be point ("p" ), line ("l" ),
or point and line ("pl" ).
|
conf_level |
(numeric ) value for the confidence level within the range of (0, 1).
|
incl_screen |
(logical ) whether the screening visit should be included.
|
mid_point_size |
(numeric(1) ) font size of the mid plot points.
|
table_font_size |
(numeric(1) ) font size of the text in the table.
|
title |
(string ) plot title.
|
y_lab |
(string or NULL ) y-axis label. If NULL then no label will be added.
|
ggplot2_args |
(ggplot2_args ) optional object created by teal.widgets::ggplot2_args() with settings
for the module plot. For this module, this argument will only accept ggplot2_args object with labs list of
following child elements: title , subtitle , caption , y , lty . No other elements would be taken into
account. The argument is merged with option teal.ggplot2_args and with default module arguments (hard coded in
the module body).
For more details, see the vignette: vignette("custom-ggplot2-arguments", package = "teal.widgets") .
|