get_roc: Build receiver operating characteristic curve

Description Usage Arguments Value Examples

View source: R/get_roc.R

Description

The function calculates the FPR and TRPR for the receiver operating characteristic (ROC)

Usage

1
get_roc(ranks, labels)

Arguments

ranks

numeric array

labels

binary array

Value

FPR,TPR numeric arrays

Examples

1
2
3
4
5
labels <- c(rep(0,10))
labels[c(1,3,5)] <- 1 
scores <- 10:1
ranks <- rank(scores)
roc <- get_roc(ranks, labels)

EGAD documentation built on Nov. 8, 2020, 8:31 p.m.