The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
Fast and lightweight computation of AUC metric for the binary case (1 positive and 0 negative) is offered by lightAUC package. The algorithm used is a fast implementation from algorithm of Fawcett (2006).
The official (CRAN) version of the package can be installed using
install.packages("lightAUC")
Alternatively, the development version of the package can be installed via
if (!require(remotes)) install.packages("remotes")
::install_github("cadam00/lightAUC") remotes
To cite the official (CRAN) version of the package, please use
Adam, C. (2025). lightAUC: Fast AUC Computation. R package version 0.1.2. doi:10.32614/CRAN.package.lightAUC
# Create some data
<- c(1, 0.4, 0.8)
probs <- c(0, 0, 1)
actuals lightAUC(probs, actuals)
## 0.5
For parallel calculations use:
# E.g. 2 cores (you can use cores = parallel::detectCores() for your case)
<- c(1, 0.4, 0.8)
probs <- c(0, 0, 1)
actuals lightAUC(probs, actuals, parallel = TRUE, cores = 2)
## 0.5
Fawcett, T. (2006). An
introduction to ROC analysis.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.