add_ROC_derived_columns {sigr} | R Documentation |
Add ROC derived columns.
Description
Add ROC columns derived from sensitivity and specificity.
Usage
add_ROC_derived_columns(d, positive_prevalence)
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 |
Value
extended data frame with more columns
Examples
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))
[Package sigr version 1.1.5 Index]