Skip to main content

Creates the Precision-Recall-Gain curve and calculates the area under the curve

Project description

What are the Precision-Recall-Gain curves?

Please see http://www.cs.bris.ac.uk/~flach/PRGcurves/.

Contents

This package provides the following 6 functions:

precision_gain(TP,FN,FP,TN)
recall_gain(TP,FN,FP,TN)
create_prg_curve(labels,pos_scores)
calc_auprg(prg_curve)
prg_convex_hull(prg_curve)
plot_prg(prg_curve)

Installation

This package can be installed using pip from command line:

pip install pyprg

Usage

Detailed information about the usage can be seen in the manual pages of the individual functions, e.g. by typing ?prg.create_prg_curve after importing with import prg. The example usage is as follows:

import prg
import numpy as np
labels = np.array([1,1,1,0,1,1,1,1,1,1,0,1,1,1,0,1,0,0,1,0,0,0,1,0,1], dtype='int')
scores = np.arange(1,26)[::-1]
prg_curve = prg.create_prg_curve(labels, scores)
auprg = prg.calc_auprg(prg_curve)
print(auprg)
prg.plot_prg(prg_curve)

Authors

This package has been written by Meelis Kull, Telmo de Menezes e Silva Filho, Miquel Perello Nieto, based on work by Peter Flach and Meelis Kull, see http://www.cs.bris.ac.uk/~flach/PRGcurves/.

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

pyprg-0.1.1b5.tar.gz (6.0 kB view hashes)

Uploaded Source

Built Distribution

pyprg-0.1.1b5-py2.py3-none-any.whl (7.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page