compute_study_summary.RdCreates a dataframe summarizing number of subjects in each trtreatment group
compute_study_summary(data, trt_col, id_col, group_col = NULL)a tibble of number of subjects in trt_col (or trt_col + group_col) along with total id_col
data_proc <- preprocess(cqtkit_data_verapamil)
compute_study_summary(data_proc, TRTG, ID)
#> # A tibble: 3 × 2
#> grouping n_sub
#> <chr> <int>
#> 1 Total 22
#> 2 Placebo 22
#> 3 Verapamil HCL 21