Skip to content

evwalz/urocc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

urocc

The urocc package provides the functionality of creating an animated ROC movie (ROCM), a universal ROC (UROC) curve and to compute the coefficient of predictive ability (CPA). These tools generalize the classical ROC curve and AUC and can be applied to assess the predictive abilities of features, markers and tests for not only binary classification problems but for just any ordinal or real-valued outcome.
For more information see: https://arxiv.org/abs/1912.01956

Installation

To build and install clone repository and run:

pip install ./urocc

Example

The following basic example shows how to create a UROC curve:

from urocc import uroc

response = [1,2,3,4,5,2,4,3,5,6,7]
predictor = [3,5,4,6,7,8,9,10,9,12,13]

uroc_curve = uroc(response, predictor)
uroc_curve.plot()

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published