Learn R Programming

sigr (version 1.1.5)

add_ROC_derived_columns: Add ROC derived columns.

Description

Add ROC columns derived from sensitivity and specificity.

Usage

add_ROC_derived_columns(d, positive_prevalence)

Value

extended data frame with more columns

Arguments

d

input data frame, must at lest of columns Sensitivity and Specificity

positive_prevalence

scalar, the prevalence of the positive class or prior odds

Examples

Run this code

d <- data.frame(pred = 1:4, truth = c(TRUE,FALSE,TRUE,TRUE))
roc <- build_ROC_curve(d$pred, d$truth)
add_ROC_derived_columns(roc, mean(d$truth))

Run the code above in your browser using DataLab