plr: Calculate the positive or negative likelihood ratio
Description
Calculate the positive or negative likelihood ratio
from true positives, false positives, true negatives and false negatives.
The inputs must be vectors of equal length.
plr = tpr / fpr
nlr = fnr / tnr
Usage
plr(tp, fp, tn, fn, ...)
nlr(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.