True Negatives
Classification measure counting the true negatives, i.e. the number of predictions correctly indicating a negative class label.
tn(truth, response, positive, ...)
truth |
( |
response |
( |
positive |
( |
... |
( |
Performance value as numeric(1)
.
Type: "binary"
Range: [0, Inf)
Minimize: FALSE
Required prediction: response
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) tn(truth, response, positive = "a")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.