abs_d_ppv_npv: Calculate the absolute difference of positive and negative predictive value
Description
Calculate the absolute difference of positive predictive value (PPV) and
negative predictive value (NPV) from
true positives, false positives, true negatives and false negatives.
The inputs must be vectors of equal length.
ppv = tp / (tp + fp)
npv = tn / (tn + fn)
abs\_d\_ppv\_npv = |ppv - npv|
Usage
abs_d_ppv_npv(tp, fp, tn, fn, ...)
Arguments
tp
(numeric) number of true positives.
fp
(numeric) number of false positives.
tn
(numeric) number of true negatives.
fn
(numeric) number of false negatives.
...
for capturing additional arguments passed by method.