Automated AB tests
Project description
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)
```
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)
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file ABtests-0.0.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: ABtests-0.0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f379c1751be1854d4468e5b18fa47cd49e9cced435a769867181513d71a84772 |
|
MD5 | f7b118b14c6042f5c945957cafa3921a |
|
BLAKE2b-256 | fdc4c527cd95a735862c736ea5b3d42bc9c2791bde463db0143dea53e324507e |