tm_t_pp_basic_info {teal.modules.clinical} | R Documentation |
teal Module: Patient Profile Basic Info
Description
This module produces a patient profile basic info report using ADaM datasets.
Usage
tm_t_pp_basic_info(
label,
dataname = "ADSL",
patient_col = "USUBJID",
vars = NULL,
pre_output = NULL,
post_output = NULL
)
Arguments
label |
( |
dataname |
( |
patient_col |
( |
vars |
( |
pre_output |
( |
post_output |
( |
Value
a teal_module
object.
Examples
ADSL <- tmc_ex_adsl
app <- init(
data = cdisc_data(
ADSL = ADSL,
code = "ADSL <- tmc_ex_adsl"
),
modules = modules(
tm_t_pp_basic_info(
label = "Basic Info",
dataname = "ADSL",
patient_col = "USUBJID",
vars = choices_selected(
choices = variable_choices(ADSL),
selected = c("ARM", "AGE", "SEX", "COUNTRY", "RACE", "EOSSTT")
)
)
)
)
if (interactive()) {
shinyApp(app$ui, app$server)
}
[Package teal.modules.clinical version 0.9.1 Index]