get_prc {EGAD}R Documentation

Build precision-recall curve

Description

The function calculates the recall and precision

Usage

get_prc(ranks, labels)

Arguments

ranks

numeric array

labels

binary array

Value

recall,precision numeric arrays

Examples

labels <- c(rep(0,10))
labels[c(1,3,5)] <- 1 
scores <- 10:1
ranks <- rank(scores)
prc <- get_prc(ranks, labels)


[Package EGAD version 1.20.0 Index]