This teal module produces a patient profile vitals plot using ADaM
datasets.
Usage
tm_g_pp_vitals(
label,
dataname = "ADVS",
parentname = "ADSL",
patient_col = "USUBJID",
paramcd = NULL,
aval = NULL,
xaxis = NULL,
font_size = c(12L, 12L, 25L),
plot_height = c(700L, 200L, 2000L),
plot_width = NULL,
pre_output = NULL,
post_output = NULL,
ggplot2_args = teal.widgets::ggplot2_args()
)
Arguments
- label
(
character
)
menu item label of the module in the teal app.- dataname
(
character
)
analysis data used in teal module.- parentname
(
character
)
parent analysis data used in teal module, usually this refers toADSL
.- patient_col
(
character
)
patient ID column to be used.- paramcd
(
teal.transform::choices_selected()
orteal.transform::data_extract_spec()
)PARAMCD
column of theADVS
dataset.- aval
(
teal.transform::choices_selected()
orteal.transform::data_extract_spec()
)AVAL
column of theADVS
dataset.- xaxis
(
teal.transform::choices_selected()
orteal.transform::data_extract_spec()
)
time variable to be represented in the vitals plot x-axis.- font_size
(
numeric
)
numeric vector of length 3 for current, min and max font size values.- plot_height
optional, (
numeric
)
a vector of length three withc(value, min, max)
. Specifies the height of the main plot and renders a slider on the plot to interactively adjust the plot height.- plot_width
optional, (
numeric
)
a vector of length three withc(value, min, max)
. Specifies the width of the main plot and renders a slider on the plot to interactively adjust the plot width.- pre_output
optional, (
shiny.tag
)
with text placed before the output to put the output into context. For example a title.- post_output
optional, (
shiny.tag
)
with text placed after the output to put the output into context. For example theshiny::helpText()
elements are useful.- ggplot2_args
-
optional, (
ggplot2_args
)
object created byteal.widgets::ggplot2_args()
with settings for the module plot. The argument is merged with optionteal.ggplot2_args
and with default module arguments (hard coded in the module body).For more details, see the help vignette:
vignette("custom-ggplot2-arguments", package = "teal.widgets")
.
Examples
library(nestcolor)
adsl <- tmc_ex_adsl
advs <- tmc_ex_advs
app <- init(
data = cdisc_data(
cdisc_dataset("ADSL", adsl),
cdisc_dataset("ADVS", advs)
),
modules = modules(
tm_g_pp_vitals(
label = "Vitals",
dataname = "ADVS",
parentname = "ADSL",
patient_col = "USUBJID",
plot_height = c(600L, 200L, 2000L),
paramcd = choices_selected(
choices = variable_choices(advs, "PARAMCD"),
selected = "PARAMCD"
),
xaxis = choices_selected(
choices = variable_choices(advs, "ADY"),
selected = "ADY"
),
aval = choices_selected(
choices = variable_choices(advs, "AVAL"),
selected = "AVAL"
)
)
)
)
#> [INFO] 2023-08-14 14:44:10.8540 pid:1183 token:[] teal.modules.clinical Initializing tm_g_pp_vitals
if (interactive()) {
shinyApp(app$ui, app$server)
}