Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
**Example App** ``` ADSL <- tmc_ex_adsl ADCM <- tmc_ex_adcm adcm_keys <- c("STUDYID", "USUBJID", "ASTDTM", "CMSEQ", "ATC1", "ATC2", "ATC3", "ATC4") join_keys <- default_cdisc_join_keys[c("ADSL", "ADCM")] join_keys["ADCM", "ADCM"] <- adcm_keys app <- teal::init( data = cdisc_data( ADSL = ADSL, ADCM = ADCM, code = " ADSL <- tmc_ex_adsl ADCM <- tmc_ex_adcm ", join_keys = join_keys ), modules = modules( tm_t_mult_events( label = "Concomitant Medications by Medication Class and Preferred Name", dataname = "ADCM", arm_var = choices_selected(c("ARM", "ARMCD"), "ARM"), seq_var = choices_selected("CMSEQ", selected = "CMSEQ", fixed = TRUE), hlt = choices_selected( choices = variable_choices(ADCM, c("ATC1", "ATC2", "ATC3", "ATC4")), selected = c("ATC1", "ATC2", "ATC3", "ATC4") ), llt = choices_selected( choices = variable_choices(ADCM, c("CMDECOD")), selected = c("CMDECOD") ), add_total = TRUE, event_type = "treatment" ) ) ) shinyApp(app$ui, app$server) ```
- Loading branch information