True Positives
Binary classification measure counting the true positives, i.e. the number of predictions correctly indicating a positive class label.
tp(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)
tp(truth, response, positive = "a")Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.