123456789101112131415161718192021222324 |
- % Generated by roxygen2: do not edit by hand
- % Please edit documentation in R/roc.R
- \name{simple.roc}
- \alias{simple.roc}
- \title{Create a ROC curve}
- \usage{
- simple.roc(labels, scores, decreasing = TRUE)
- }
- \arguments{
- \item{labels}{vector of outcomes}
- \item{scores}{vector of variable values}
- \item{decreasing}{ordering of scores}
- }
- \value{
- data frame with columns TPR, FPR, labels, scores, V
- V is combination of V0 (negative cases) and V1 (positive cases)
- V0 is portion of positive cases with value larger than score
- V1 is portion of negative cases with value below score
- }
- \description{
- Create a ROC curve
- }
|