Learn R Programming

EGAD (version 1.0.3)

auroc_analytic: Area under the receiver operating characteristic curve

Description

The function calculates the area under the receiver operating characteristic (ROC) curve analytically

Usage

auroc_analytic(scores, labels)

Arguments

scores
numeric array
labels
binary array

Value

auroc Numeric value

Examples

Run this code
labels <- c(rep(0,10))
labels[c(1,3,5)] <- 1 
scores <- 10:1
auroc <- auroc_analytic(scores, labels)

Run the code above in your browser using DataLab