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 Python

Python library for AB test analysis.

Why use Spotify Confidence?

Spotify Confidence provides convenience 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. It also supports a variance reduction technique based on using pre-exposure data to fit a linear model.

There is also a Bayesian alternative in the BetaBinomial class.

Basic Example

import spotify_confidence as confidence
import pandas as pd

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

test = confidence.ZTest(
    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_difference(level='control', level_as_reference=True)

test.summary_plot().show()
test.difference_plot(level_1='control', level_2='treatment1').show()
test.multiple_difference_plot(level='control', level_as_reference=True).show()

There's a lot more you can do:

  • Segment results by one or more dimensions
  • Use non-inferiority margins
  • Group sequential tests
  • Sample size and power calculations
  • etc

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-3.0.4.tar.gz (93.6 kB view details)

Uploaded Source

Built Distribution

spotify_confidence-3.0.4-py3-none-any.whl (86.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: spotify-confidence-3.0.4.tar.gz
  • Upload date:
  • Size: 93.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for spotify-confidence-3.0.4.tar.gz
Algorithm Hash digest
SHA256 4a088d6d4b845a3cd7434c454d793fd238332e0618bdbe858eb127a462ff9350
MD5 56fc998636fccd9ad23537e87eb75dbb
BLAKE2b-256 626c29c8569abf6fd16b3baacd1c0dd3ca842978baea7fe934d937f73ff96c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for spotify_confidence-3.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 a8d23335ab6bfff39cdaef89e6290f7230d299fca03a3f7f830dd43113ff0545
MD5 568ec150f2f4288c9b18fb1bf327fdcf
BLAKE2b-256 853dddcad81a4a3079064daa66a6a26ebf02aed28cde3b9ba371b6f07be5a2d5

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