false_omission_rate | R Documentation |
Calculate the false omission rate or false discovery rate
from true positives, false positives, true negatives and false negatives.
The inputs must be vectors of equal length.
false_omission_rate = fn / (tn + fn) = 1 - npv
false_discovery_rate = fp / (tp + fp) = 1 - ppv
false_omission_rate(tp, fp, tn, fn, ...) false_discovery_rate(tp, fp, tn, fn, ...)
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. |
Other metric functions:
F1_score()
,
Jaccard()
,
abs_d_ppv_npv()
,
abs_d_sens_spec()
,
accuracy()
,
cohens_kappa()
,
cutpoint()
,
metric_constrain()
,
misclassification_cost()
,
npv()
,
odds_ratio()
,
p_chisquared()
,
plr()
,
ppv()
,
precision()
,
prod_ppv_npv()
,
prod_sens_spec()
,
recall()
,
risk_ratio()
,
roc01()
,
sensitivity()
,
specificity()
,
sum_ppv_npv()
,
sum_sens_spec()
,
total_utility()
,
tpr()
,
tp()
,
youden()
false_omission_rate(10, 5, 20, 10) false_omission_rate(c(10, 8), c(5, 7), c(20, 12), c(10, 18))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.