
Compute High QTc Subjects
compute_high_qtc_sub.RdComputes the number of subjects with QTc > 450, 480, 500 as well as deltaQTc > 30, 60.
Value
A tibble with counts of observations exceeding QTc thresholds (450, 480, 500 ms) and deltaQTc thresholds (30, 60 ms)
Examples
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