Skip to main content

Package for calculating and visualising confidence intervals, e.g. for A/B test analysis.

Project description

Spotify Confidence

Status Latest release Python Python

Python library for AB test analysis.

Why use Spotify Confidence?

Spotify Confidence provides convinience wrappers around statsmodel's various functions for computing p-values and confidence intervalls. With Spotify Confidence it's easy to compute several p-values and confidence bounds in one go, e.g. one for each country or for each date. Each function comes in two versions:

  • one that return a pandas dataframe,
  • one that returns a Chartify chart.

Spotify Confidence has support calculating p-values and confidence intervals using Z-statistics, Student's T-statistics (or more exactly Welch's T-test, as well as Chi Squared statistics)

There is also a Bayesian alternative in the BetaBinomial class.

Examples

data = pd.DataFrame(
    {'variation_name': ['treatment1', 'control', 'treatment2', 'treatment3'],
     'success': [50, 40, 10, 20],
     'total': [100, 100, 50, 60]
    }
)

test = confidence.ZTest(
    self.data,
    numerator_column='success',
    numerator_sum_squares_column=None,
    denominator_column='total',
    categorical_group_columns='variation_name',
    correction_method='bonferroni')

test.summary()
test.difference(level_1='control', level_2='treatment1')
test.multiple_diffence(level='control', level_as_reference=True)

test.summary_plot()
test.multiple_diffence_plot(level='control', level_as_reference=True).show()

See jupyter notebooks in examples folder for more complete examples.

Installation

Spotify Confidence can be installed via pip:

pip install spotify-confidence

Find the latest release version here

Code of Conduct

This project adheres to the Open Code of Conduct By participating, you are expected to honor this code.

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

spotify-confidence-2.0.1.tar.gz (3.4 MB view details)

Uploaded Source

Built Distribution

spotify_confidence-2.0.1-py3-none-any.whl (51.8 kB view details)

Uploaded Python 3

File details

Details for the file spotify-confidence-2.0.1.tar.gz.

File metadata

  • Download URL: spotify-confidence-2.0.1.tar.gz
  • Upload date:
  • Size: 3.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.2 packaging/20.9 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9

File hashes

Hashes for spotify-confidence-2.0.1.tar.gz
Algorithm Hash digest
SHA256 c989c0cfa06e942f0bfddb0e028a586d24d29c0d43c921ade2f142988a8a1e6c
MD5 aecf96b45893436a1e1f6c7253b20b94
BLAKE2b-256 0594a44e1cdd5754feee41df59ff38e56ee373a894d3f81f5779ac38825b90b3

See more details on using hashes here.

File details

Details for the file spotify_confidence-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: spotify_confidence-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 51.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.0 importlib_metadata/3.7.2 packaging/20.9 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.7.9

File hashes

Hashes for spotify_confidence-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 3df0c6c2c4f8aeb65ee9e598f98bfeab0611c4925d974f864f369b8a0cfbbc11
MD5 77dddfb588cc879e765e8718443e0c2e
BLAKE2b-256 d3f58d6f04fbabe0bca0dc9bcd915069a3bb75925f0f8811f51b0b4dbc6bdf46

See more details on using hashes here.

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