Skip to main content

Plot predictiveness curve

Project description

predictiveness-curve

PyPi version Python support License Build Status codecov Downloads Downloads Downloads

What's Predictiveness Curve?

Predictiveness curve is a method to display two graphs simultaneously. In both figures, the x-axis is risk percentile, the y-axis of one figure is the value of risk, and the y-axis of the other figure is true positive fractions. This makes it possible to visualize whether the model of risk fits in the medical field and which value of risk should be used as the basis for the model. See Am. J. Epidemiol. 2008; 167:362–368 for details.

Install

This module implements functions to plot Predictiveness Curve.
Install with :

pip install predictiveness-curve

Example

from predictiveness_curve import plot_predictiveness_curve
from sklearn.datasets import load_breast_cancer
from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import train_test_split

data = load_breast_cancer()
y = data.target
X = data.data

training_X, test_X, training_y, test_y = train_test_split(
    X, y, test_size=0.5, random_state=42)

clsf = RandomForestClassifier(n_estimators=100, random_state=42)
clsf.fit(training_X, training_y)
probabilities = clsf.predict_proba(test_X)[:, 1]

plot_predictiveness_curve(probabilities, test_y)

See notebooks directory for details.

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

predictiveness-curve-0.2.2.tar.gz (4.8 kB view details)

Uploaded Source

File details

Details for the file predictiveness-curve-0.2.2.tar.gz.

File metadata

  • Download URL: predictiveness-curve-0.2.2.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.1.0 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.6.8

File hashes

Hashes for predictiveness-curve-0.2.2.tar.gz
Algorithm Hash digest
SHA256 077b7b7ad6fab14eec3a629009bfc46893aff2b3d9d64c76a2a501191f568d19
MD5 2fb27b8f3f30098e866fe5506e1e437c
BLAKE2b-256 61d5f986e54a09f18e693c94ba7c719e2783ea41d90d6056089cecc46067649c

See more details on using hashes here.

Supported by

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