t_aesi_slide | R Documentation |
Table of AEs of Special Interest adapted from https://insightsengineering.github.io/tlg-catalog/stable/tables/adverse-events/aet01_aesi.html
t_aesi_slide(adsl, adae, aesi, arm = "ACTARM", grad_var = "AETOXGR")
adsl |
ADSL data set, dataframe |
adae |
ADAE data set, dataframe. |
aesi |
AESI variable which will act as a filter to select the rows required to create the table. An example of AESI variable is CQ01NAM. |
arm |
Arm variable, character, '"ACTARM"' by default. |
grad_var |
Grading variable, character, '"AETOXGR"' by default. |
rtables object
Kai Xiang Lim ('limk43')
library(dplyr)
adsl <- eg_adsl
adae <- eg_adae
adae_atoxgr <- adae %>% dplyr::mutate(ATOXGR = AETOXGR)
t_aesi_slide(adsl, adae, aesi = "CQ01NAM")
t_aesi_slide(adsl, adae, aesi = "CQ01NAM", arm = "ARM", grad_var = "AESEV")
t_aesi_slide(adsl, adae_atoxgr, aesi = "CQ01NAM", grad_var = "ATOXGR")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.