Skip to contents

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 to ADSL.

dataname

(character)
analysis data used in teal module.

arm_var

(character)
variable names that can be used as arm_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 unused arm_var levels. When TRUE, arm_var levels are set to those used in the dataname dataset. When FALSE, arm_var levels are set to those used in the parantname dataset.

basic_table_args

optional, (basic_table_args)
object created by teal.widgets::basic_table_args() with settings for the module table. The argument is merged with option teal.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").