R/robFScore2.R

Defines functions robFScore2

Documented in robFScore2

#' General robust F-Beta Score
#'
#' Compute a robust version of the F-Beta Score with two additional parameters.
#'
#' @param actual	A vector of actual values (1/0 or TRUE/FALSE)
#' @param predicted A vector of prediction values (1/0 or TRUE/FALSE)
#' @param TP Count of true positives (correctly predicted 1/TRUE)
#' @param FN Count of false negatives (predicted 0/FALSE, but actually 1/TRUE)
#' @param FP Count of false positives (predicted 1/TRUE, but actually 0/FALSE)
#' @param TN Count of true negatives (correctly predicted 0/FALSE)
#' @param d1 Weight of recall in the harmonic mean (corresponds to beta squared)
#' @param d0 Weight of the estimated true positive probability in the harmonic mean
#' @param c Additional parameter in numerator
#'
#' @details
#' Calculate the robust F-Beta Score \eqn{F_{rb}} with two additional parameters.
#' Provide either:
#' * `actual` and `predicted` or
#' * `TP`, `FN`, `FP` and `TN`.
#'
#' The robust family requires \eqn{d_0>0}, \eqn{d_1\geq 0}, \eqn{c\geq 0}, and
#' \eqn{d_0+d_1-c>0}. The classical F-Beta Score is recovered for
#' \eqn{d_0=c=0} and \eqn{d_1=\beta^2>0}.
#' @md
#'
#' @return robust F-Beta Score with two additional parameters.
#'
#' @references
#' Holzmann, H., Klar, B. (2026). Robust performance metrics for imbalanced classification problems.
#' arXiv:2404.07661. \href{https://arxiv.org/abs/2404.07661}{LINK}
#'
#' @examples
#' actual <-    c(1,1,1,1,1,1,0,0,0,0)
#' predicted <- c(1,1,1,1,0,0,1,0,0,0)
#' robFScore2(actual, predicted, d0 = 0.1, c = 0.1)
#' robFScore2(TP=4, FN=2, FP=1, TN=3, d0 = 0.1, c = 1)
#'
#' @export
robFScore2 = function(actual = NULL, predicted = NULL, TP = NULL, FN = NULL,
                  FP = NULL, TN = NULL, d1 = 1, d0 = 0.1, c = 1) {
  valid_input <- FALSE
  if (!is.null(predicted) & !is.null(actual) & is.null(TP) & is.null(FN) &
      is.null(FP) & is.null(TN))
    valid_input <- TRUE
  if ((!is.null(TP) & !is.null(FN) & !is.null(FP) & !is.null(TN)) &
      is.null(predicted) & is.null(actual))
    valid_input <- TRUE
  if (!valid_input)
    stop("Either {'predicted' and 'actual'} or {'TP', 'FN', 'FP', 'TN'} should be provided.")

  if (!is.numeric(d1) || length(d1) != 1L || is.na(d1) || d1 < 0)
    stop("'d1' should be a nonnegative number.")
  if (!is.numeric(d0) || length(d0) != 1L || is.na(d0) || d0 < 0)
    stop("'d0' should be a nonnegative number.")
  if (!is.numeric(c) || length(c) != 1L || is.na(c) || c < 0)
    stop("'c' should be a nonnegative number.")
  if (d0 + d1 - c <= 0)
    stop("'d0 + d1 - c' should be positive.")
  if (d0 == 0 && c != 0)
    stop("'d0' may be zero only for the classical F-Beta special case with c = 0.")

  if (is.null(TP)) {
    if (length(actual) != length(predicted))
      stop("'actual' and 'predicted' should have the same length")
    if (!(is.logical(actual) || is.numeric(actual)) || !all(actual %in% c(0L, 1L)))
      stop("'actual' should only consist of TRUE/FALSE or 1/0")
    if (!(is.logical(predicted) || is.numeric(predicted)) || !all(predicted %in% c(0L, 1L)))
      stop("'predicted' should only consist of TRUE/FALSE or 1/0")
    TP <- sum(actual & predicted)   # True Positives
    FN <- sum(actual & !predicted)  # False Negatives
    FP <- sum(!actual & predicted)  # False Positives
    TN <- sum(!actual & !predicted) # True Negatives
  } else {
    TP <- as.double(TP)
    FP <- as.double(FP)
    TN <- as.double(TN)
    FN <- as.double(FN)
  }

  recall <- TP / (TP + FN)
  precision <- TP / (TP + FP)
  total <- (TP + FN + FP + TN)
  PP <- (TP + FN) / total
  TPP <- TP / total
  FS <- (d0/PP + d1 + 1) / (1 + c) * (1 + c/recall) / (d0/TPP + d1/recall + 1/precision )
  return( FS )
}

Try the RobustMetrics package in your browser

Any scripts or data that you put into this service are public.

RobustMetrics documentation built on Aug. 21, 2026, 5:17 p.m.