auprc {EGAD} | R Documentation |
The function calculates the area under the precision-recall curve
auprc(scores, labels)
scores |
numeric array |
labels |
binary array |
auprc Numeric value
labels <- c(rep(0,10)) labels[c(1,3,5)] <- 1 scores <- 10:1 auprc <- auprc(scores, labels)