Skip to content

Python3pkg/ABtests

 
 

Repository files navigation

This software aims to automate tests analysis

Installation: pip install ABtests

Usage example:

```python import numpy as np from ABtests.analysis import TtestIndip

mu_test, sigma = 0, 0.1 # mean and standard deviation mu_control = 0.2

test = np.random.normal(mu_test, sigma, 500) control = np.random.normal(mu_control, sigma, 500)

analysis = TtestIndip(test, control)

analysis.report()

print(analysis.p_value) ```

About

AB test framework for python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.4%
  • Makefile 0.6%