Closed vedhav closed 11 months ago
Example App
data <- cdisc_data() |> within({ library(nestcolor) ADSL <- rADSL ADAE <- rADAE %>% mutate(ASTDT = as.Date(ASTDTM), AENDT = as.Date(AENDTM)) ADCM <- rADCM %>% mutate(ASTDT = as.Date(ASTDTM), AENDT = as.Date(AENDTM)) # The step below is to pre-process ADCM to legacy standard ADCM <- ADCM %>% select(-starts_with("ATC")) %>% unique() ADRS <- rADRS %>% mutate(ADT = as.Date(ADTM)) ADEX <- rADEX %>% mutate(ASTDT = as.Date(ASTDTM), AENDT = as.Date(AENDTM)) ADLB <- rADLB %>% mutate(ADT = as.Date(ADTM), LBSTRESN = as.numeric(LBSTRESC)) }) datanames(data) <- c("ADSL", "ADAE", "ADCM", "ADRS", "ADEX", "ADLB") join_keys(data) <- default_cdisc_join_keys[datanames(data)] ADSL <- data[["ADSL"]] app <- init( data = data, modules = modules( tm_g_patient_profile( label = "Patient Profile Plot", patient_id = choices_selected( choices = unique(ADSL$USUBJID), selected = unique(ADSL$USUBJID)[1] ), sl_dataname = "ADSL", ex_dataname = "ADEX", ae_dataname = "ADAE", rs_dataname = "ADRS", cm_dataname = "ADCM", lb_dataname = "ADLB", sl_start_date = choices_selected( selected = "TRTSDTM", choices = c("TRTSDTM", "RANDDT") ), ex_var = choices_selected( selected = "PARCAT2", choices = "PARCAT2" ), ae_var = choices_selected( selected = "AEDECOD", choices = c("AEDECOD", "AESOC") ), ae_line_col_var = choices_selected( selected = "AESER", choices = c("AESER", "AEREL") ), ae_line_col_opt = c("Y" = "red", "N" = "blue"), rs_var = choices_selected( selected = "PARAMCD", choices = "PARAMCD" ), cm_var = choices_selected( selected = "CMDECOD", choices = c("CMDECOD", "CMCAT") ), lb_var = choices_selected( selected = "LBTESTCD", choices = c("LBTESTCD", "LBCAT") ), x_limit = "-28, 750", plot_height = c(1200, 400, 5000) ) ) ) if (interactive()) { shinyApp(app$ui, app$server) }
Example App