Template: Laboratory test results with highest grade post-baseline
Source:R/tm_t_abnormality_by_worst_grade.R
template_abnormality_by_worst_grade.Rd
Template: Laboratory test results with highest grade post-baseline
Usage
template_abnormality_by_worst_grade(
parentname,
dataname,
arm_var,
id_var = "USUBJID",
paramcd = "PARAMCD",
atoxgr_var = "ATOXGR",
worst_high_flag_var = "WGRHIFL",
worst_low_flag_var = "WGRLOFL",
worst_flag_indicator = "Y",
add_total = FALSE,
total_label = "All Patients",
drop_arm_levels = TRUE,
basic_table_args = teal.widgets::basic_table_args()
)
Arguments
- parentname
(
character
)
parent analysis data used in teal module, usually this refers toADSL
.- dataname
(
character
)
analysis data used in teal module.- arm_var
(
character
)
variable names that can be used asarm_var
.- id_var
(
character
)
the variable name for subject id.- paramcd
(
character
)
variable value designating the studied parameter.- atoxgr_var
(
character
)
the variable name indicating Analysis Toxicity Grade.- worst_high_flag_var
(
character
)
the variable name indicating Worst High Grade flag- worst_low_flag_var
(
character
)
the variable name indicating Worst Low Grade flag- worst_flag_indicator
(
character
)
value indicating worst grade.- add_total
(
logical
)
whether to include column with total number of patients.- drop_arm_levels
(
logical
)
drop the unusedarm_var
levels. WhenTRUE
,arm_var
levels are set to those used in thedataname
dataset. WhenFALSE
,arm_var
levels are set to those used in theparantname
dataset.- basic_table_args
-
optional, (
basic_table_args
)
object created byteal.widgets::basic_table_args()
with settings for the module table. The argument is merged with optionteal.basic_table_args
and with default module arguments (hard coded in the module body).For more details, see the vignette:
vignette("custom-basic-table-arguments", package = "teal.widgets")
.