| tnr | R Documentation |
Measure to compare true observed labels with predicted labels in binary classification tasks.
tnr(truth, response, positive, na_value = NaN, ...)
specificity(truth, response, positive, na_value = NaN, ...)
truth |
( |
response |
( |
positive |
( |
na_value |
( |
... |
( |
The True Negative Rate is defined as
\frac{\mathrm{TN}}{\mathrm{FP} + \mathrm{TN}}.
Also know as "specificity" or "selectivity".
This measure is undefined if FP + TN = 0.
Performance value as numeric(1).
Type: "binary"
Range: [0, 1]
Minimize: FALSE
Required prediction: response
https://en.wikipedia.org/wiki/Template:DiagnosticTesting_Diagram
Other Binary Classification Measures:
auc(),
bbrier(),
dor(),
fbeta(),
fdr(),
fn(),
fnr(),
fomr(),
fp(),
fpr(),
gmean(),
gpr(),
npv(),
ppv(),
prauc(),
tn(),
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)
tnr(truth, response, positive = "a")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.