R/class_balacc.R

Defines functions balacc

Documented in balacc

#' @title Balanced Accuracy  
#' @name balacc
#' @description It estimates the balanced accuracy for a nominal/categorical predicted-observed dataset.
#' @param data (Optional) argument to call an existing data frame containing the data.
#' @param obs Vector with observed values (character | factor).
#' @param pred Vector with predicted values (character | factor).
#' @param pos_level Integer, for binary cases, indicating the order (1|2) of the level 
#' corresponding to the positive. Generally, the positive level is the second (2)
#' since following an alpha-numeric order, the most common pairs are 
#' `(Negative | Positive)`, `(0 | 1)`, `(FALSE | TRUE)`. Default : 2.
#' @param tidy Logical operator (TRUE/FALSE) to decide the type of return. TRUE 
#' returns a data.frame, FALSE returns a list; Default : FALSE.
#' @param na.rm Logic argument to remove rows with missing values 
#' (NA). Default is na.rm = TRUE.
#' @return an object of class `numeric` within a `list` (if tidy = FALSE) or within a
#' `data frame` (if tidy = TRUE).
#' @details The balanced accuracy is the average between recall and specificity.
#' It is particularly useful when the number of observation belonging to each class
#' is despair or imbalanced, and when especial attention is given to the negative
#' cases. It is bounded between 0 and 1. Values towards zero indicate low performance. 
#' The closer to 1 the better. 
#'  
#' For the formula and more details, see 
#' [online-documentation](https://adriancorrendo.github.io/metrica/articles/available_metrics_classification.html)
#' @references
#' García, V., Mollineda, R.A., Sánchez, J.S. (2009). Index of Balanced Accuracy: 
#' A Performance Measure for Skewed Class Distributions. 
#' _In: Araujo, H., Mendonça, A.M., Pinho, A.J., Torres, M.I. (eds) Pattern Recognition and Image Analysis._ 
#' _IbPRIA 2009. Lecture Notes in Computer Science, vol 5524._
#' _Springer-Verlag Berlin Heidelberg._ \doi{10.1007/978-3-642-02172-5_57}
#' @examples 
#' \donttest{
#' set.seed(123)
#' # Two-class
#' binomial_case <- data.frame(labels = sample(c("True","False"), 100, replace = TRUE), 
#' predictions = sample(c("True","False"), 100, replace = TRUE))
#' # Multi-class
#' multinomial_case <- data.frame(labels = sample(c("Red","Blue", "Green"), 100, replace = TRUE),
#' predictions = sample(c("Red","Blue", "Green"), 100, replace = TRUE)    )
#' 
#' # Get balanced accuracy estimate for two-class case
#' balacc(data = binomial_case, obs = labels, pred = predictions, tidy = TRUE)
#' 
#' # Get balanced accuracy estimate for the multi-class case
#' balacc(data = multinomial_case, obs = labels, pred = predictions, tidy = TRUE)
#' }
#' @rdname balacc
#' @importFrom rlang eval_tidy quo
#' @export 
balacc <- function(data=NULL, obs, pred, 
                   pos_level = 2,
                   tidy = FALSE, na.rm = TRUE){
  
  matrix <- rlang::eval_tidy(
    data = data,
    rlang::quo(table({{pred}}, {{obs}}) ) )
  
  # If binomial
  if (nrow(matrix) == 2){
    
    if(pos_level == 1){
    TP <- matrix[[1]]
    TPFN <- matrix[[1]] + matrix[[2]]
    TN <- matrix[[4]]
    N <- matrix[[4]] + matrix[[3]] }
    
    if(pos_level == 2){
      TP <- matrix[[4]]
      TPFN <- matrix[[4]] + matrix[[3]]
      TN <- matrix[[1]]
      N <- matrix[[1]] + matrix[[2]] }
    
    rec <- TP/ (TPFN) 
    spec <- TN/N
    
    }
  
  # If multinomial
  if (nrow(matrix) >2) {
    
    # Calculations
    correct <- diag(matrix)
    total_actual <- colSums(matrix) 
    
    TP   <- diag(matrix)
    TPFP <- rowSums(matrix)
    TPFN <- colSums(matrix)
    TN   <- sum(matrix) - (TPFP + TPFN - TP)
    FP   <- TPFP - TP 
    
    rec <- mean(correct / total_actual)
    spec <- mean(TN / (TN + FP))
    
  }
  
  balacc <- (rec + spec) / 2
  
  if (tidy==TRUE){
    return(as.data.frame(balacc)) }
  
  if (tidy==FALSE){
    return(list("balacc" = balacc)) }
}

Try the metrica package in your browser

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

metrica documentation built on June 30, 2024, 5:07 p.m.