auprc: Area under the precision recall curve

Description Usage Arguments Value Examples

View source: R/auprc.R

Description

The function calculates the area under the precision-recall curve

Usage

1
auprc(scores, labels)

Arguments

scores

numeric array

labels

binary array

Value

auprc Numeric value

Examples

1
2
3
4
labels <- c(rep(0,10))
labels[c(1,3,5)] <- 1 
scores <- 10:1
auprc <- auprc(scores, labels)

sarbal/EGAD documentation built on May 5, 2021, 5:10 p.m.