compute_high_qtc_sub.RdComputes the number of subjects with QTc > 450, 500 as well as deltaQTc > 30, 60
compute_high_qtc_sub(data, qtc_col, deltaqtc_col, group_col = NULL)a tibble containing the number of subjects with high QTc values
data_proc <- preprocess(cqtkit_data_verapamil)
compute_high_qtc_sub(data_proc, QTCF, deltaQTCF)
#> # A tibble: 1 × 6
#> group n_QTc_gt_450 n_QTc_gt_480 n_QTc_gt_500 n_dQTc_gt_30 n_dQTc_gt_60
#> <chr> <int> <int> <int> <int> <int>
#> 1 Total 0 0 0 0 0