plot_roc {EGAD}R Documentation

Plot receiver operating characteristic curve

Description

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

Usage

plot_roc(scores, labels)

Arguments

scores

numeric array

labels

binary array

Value

FPR,TPR numeric arrays

Examples

labels <- c(rep(0,10))
labels[c(1,3,5)] <- 1 
scores <- 10:1
roc <- plot_roc(scores, labels)



[Package EGAD version 1.10.0 Index]