| auc {asbio} | R Documentation | 
Area under a receiver operating characteristic (ROC) curve
Description
A simple algorithm for calculating AUC.
Usage
auc(obs, fit, plot = FALSE)
Arguments
| obs | Dichotomous  | 
| fit | Fitted probabilities from some model. | 
| plot | Logical, indicating whether or not ROC curve plot should be created. | 
Author(s)
Ken Aho
References
Agresti, A. (2012) Categorical Data Analysis, 3rd edition. New York. Wiley.
Examples
## Not run: 
obs <-rbinom(30, 1, 0.5)
fit <- rbeta(30, 1, 2)
auc(obs, fit)
## End(Not run)
[Package asbio version 1.9-7 Index]