Tools to compute and visualize ROC curves.
Project description
roc-utils
This Python package provides tools to compute and visualize ROC curves, which are used to graphically assess the diagnostic ability of binary classifiers.
Use roc_utils
to perform ROC analyses, including the calculation of the ROC-AUC (the area under the ROC curve) and the identification of optimal classification thresholds for different objective functions. In addition, it is possible to compute mean, tolerance interval (TI) and confidence interval (CI) for a set of (related) ROC curves. Finally, error bounds can be estimated and visualized by means of boostrap sampling.
Installation:
pip install roc-utils
Use the following commands for a quick verification of the installation.
python -c "import roc_utils; print(roc_utils.__version__)"
python -c "import roc_utils; roc_utils.demo_bootstrap()"
Usage:
See examples/tutorial.ipynb for step-by-step introduction.
import numpy as np
import matplotlib.pyplot as plt
import roc_utils as ru
# Construct a binary classification problem
x, y = ru.demo_sample_data(n1=300, mu1=0.0, std1=0.5,
n2=300, mu2=1.0, std2=0.7)
# Compute the ROC curve...
pos_label = True
roc = ru.compute_roc(X=x, y=y, pos_label=pos_label)
# ...and visualize it
ru.plot_roc(roc, label="Sample data", color="red")
plt.show()
# To perform a ROC analysis using bootstrapping
n_samples = 20
ru.plot_roc_bootstrap(X=x, y=y, pos_label=pos_label,
n_bootstrap=n_samples,
title="Bootstrap demo");
plt.show()
Build from source:
To fetch the project and run the tests or examples:
git clone https://github.com/hirsch-lab/roc-utils.git
cd roc-utils
python tests/test_all.py
python examples/examples.py
To create distribution packages (a source archive and a wheel):
python setup.py sdist bdist_wheel
To install the newly created Python package from the source archive:
pip uninstall roc-utils
pip cache remove roc_utils
pip install dist/roc_utils*.tar.gz
# Verify installation
python -c "import roc_utils; print(roc_utils.__version__)"
python -c "import roc_utils; roc_utils.demo_bootstrap()"
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file roc_utils-0.2.2.tar.gz
.
File metadata
- Download URL: roc_utils-0.2.2.tar.gz
- Upload date:
- Size: 765.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f932c3cba50bad5a64b6cd1d483b30609a5ff7df93e34861c327900829e477af |
|
MD5 | 47593849d60939384139e4e80a11a10b |
|
BLAKE2b-256 | a707e5b99d491d279fcea9574361c73935057734f64c1b61af409fad4bc13a4f |
File details
Details for the file roc_utils-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: roc_utils-0.2.2-py3-none-any.whl
- Upload date:
- Size: 18.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 585943c1b4d188ae7a3d7422a1a5f3fc3b01e7db2bf4cba08ec22bd54175f7cb |
|
MD5 | 32d0eca3f1d97123a15f28734fb8edef |
|
BLAKE2b-256 | ed6a07a2790ecd2e554167c8d1ff81768b34b99be8802b05d3e9308c4321b851 |