fnr | R Documentation |
Measure to compare true observed labels with predicted labels in binary classification tasks.
fnr(truth, response, positive, na_value = NaN, ...)
truth |
( |
response |
( |
positive |
( |
na_value |
( |
... |
( |
The False Negative Rate is defined as
\frac{\mathrm{FN}}{\mathrm{TP} + \mathrm{FN}}.
Also know as "miss rate".
This measure is undefined if TP + FN = 0.
Performance value as numeric(1)
.
Type: "binary"
Range: [0, 1]
Minimize: TRUE
Required prediction: response
https://en.wikipedia.org/wiki/Template:DiagnosticTesting_Diagram
Other Binary Classification Measures:
auc()
,
bbrier()
,
dor()
,
fbeta()
,
fdr()
,
fn()
,
fomr()
,
fp()
,
fpr()
,
gmean()
,
gpr()
,
npv()
,
ppv()
,
prauc()
,
tn()
,
tnr()
,
tp()
,
tpr()
set.seed(1)
lvls = c("a", "b")
truth = factor(sample(lvls, 10, replace = TRUE), levels = lvls)
response = factor(sample(lvls, 10, replace = TRUE), levels = lvls)
fnr(truth, response, positive = "a")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.