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 ADTTE <- tmc_ex_adtte arm_ref_comp <- list( ACTARMCD = list( ref = "ARM B", comp = c("ARM A", "ARM C") ), ARM = list( ref = "B: Placebo", comp = c("A: Drug X", "C: Combination") ) ) app <- init( data = cdisc_data( ADSL = ADSL, ADTTE = ADTTE, code = " ADSL <- tmc_ex_adsl ADTTE <- tmc_ex_adtte " ), modules = modules( tm_t_tte( label = "Time To Event Table", dataname = "ADTTE", arm_var = choices_selected( variable_choices(ADSL, c("ARM", "ARMCD", "ACTARMCD")), "ARM" ), arm_ref_comp = arm_ref_comp, paramcd = choices_selected( value_choices(ADTTE, "PARAMCD", "PARAM"), "OS" ), strata_var = choices_selected( variable_choices(ADSL, c("SEX", "BMRKR2")), "SEX" ), time_points = choices_selected(c(182, 243), 182), event_desc_var = choices_selected( variable_choices(ADTTE, "EVNTDESC"), "EVNTDESC", fixed = TRUE ) ) ) ) shinyApp(app$ui, app$server) ```
- Loading branch information