#' Maximum Precision (Positive Predictive Value)
#'
#' This function allows to use a custom thresholding method to maximize the Precision (Positive Predictive Value). A pair of values is returned.
#'
#' @param preds Type: numeric. The predictions.
#' @param labels Type: numeric. The labels (0, 1).
#'
#' @return A two element vector containing the maximum Precision (Positive Predictive Value) for binary data, and the threshold used.
#'
#' @export
get.max_precision <- function(preds, labels) {
DT <- data.table(y_true = labels, y_prob = preds, key = "y_prob")
cleaner <- !duplicated(DT[, "y_prob"], fromLast = TRUE)
nump <- sum(y_true)
DT[, fp_v := cumsum(y_true == 1)]
DT[, tp_v := nump - fp_v]
DT <- DT[cleaner, ]
DT[, prec := tp_v / (tp_v + fp_v)]
best_row <- which.max(DT$prec)
if (length(best_row) > 0) {
return(c(DT$prec[best_row[1]], DT$y_prob[best_row[1]]))
} else {
return(c(-1, -1))
}
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.