False Positives
Classification measure counting the false positives (type 1 error), i.e. the number of predictions indicating a positive class label while in fact it is negative.
fp(truth, response, positive, ...)
truth |
( |
response |
( |
positive |
( |
... |
( |
Performance value as numeric(1)
.
Type: "binary"
Range: [0, Inf)
Minimize: TRUE
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) fp(truth, response, positive = "a")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.