#' @title False Positives
#'
#' @details
#' This measure counts the false positives (type 1 error), i.e. the number of
#' predictions indicating a positive class label while in fact it is negative.
#' This is sometimes also called a "false alarm".
#'
#' @templateVar mid fp
#' @template binary_template
#'
#' @references
#' \url{https://en.wikipedia.org/wiki/Template:DiagnosticTesting_Diagram}
#'
#' @inheritParams binary_params
#' @template binary_example
#' @export
fp = function(truth, response, positive, ...) {
assert_binary(truth, response = response, positive = positive)
fp_cm(cm(truth, response, positive))
}
fp_cm = function(m, na_value = NaN) {
m[1L, 2L]
}
#' @include measures.R
add_measure(fp, "False Positives", "binary", 0, Inf, TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.