Skip to main content

Confidence intervals and p-values for sci-kit learn.

Project description

Statkit

Supplement your sci-kit learn models with 95 % confidence intervals and p-values.

Description

  • Estimate 95 % confidence intervals for your test scores.

For example, to compute a 95 % confidence interval of the area under the receiver operating characteristic curve (ROC AUC):

from sklearn.metrics import roc_auc_score
from statkit import non_parametric

y_prob = model.predict_proba(X_test)
non_parametric.bootstrap_score(y_test, y_prob[:, 1], metric=roc_auc_score)
  • Compute p-value to test if one model is significantly better than another.

For example, to test if the area under the receiver operating characteristic curve (ROC AUC) of model 1 is significantly larger than model 2:

from sklearn.metrics import roc_auc_score
from statkit import non_parametric

y_pred_1 = model_1.predict_proba(X_test)
y_pred_2 = model_2.predict_proba(X_test)
, p_value = non_parametric.paired_permutation_test(
    y_test,
    y_pred_1[:, 1],
    y_pred_2[:, 1],
    metric=roc_auc_score,
)

Detailed documentation can be on the Statkit API documentation pages.

Installation

pip3 install statkit

Support

You can open a ticket in the Issue tracker.

Contributing

We are open for contributions. If you open a pull request, make sure that your code is:

  • Well documented,
  • Code formatted with black,
  • And contains an accompanying unit test.

Authors and acknowledgment

Hylke C. Donker

License

This code is licensed under the MIT license.

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

statkit-0.0.1.tar.gz (19.1 kB view hashes)

Uploaded Source

Built Distribution

statkit-0.0.1-py3-none-any.whl (21.4 kB view hashes)

Uploaded 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