https://github.com/drorata/abtest
A/B Testing using Python
https://github.com/drorata/abtest
Last synced: 10 months ago
JSON representation
A/B Testing using Python
- Host: GitHub
- URL: https://github.com/drorata/abtest
- Owner: drorata
- License: mit
- Created: 2018-03-19T21:00:10.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-14T12:48:19.000Z (about 8 years ago)
- Last Synced: 2025-03-05T10:46:38.079Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 192 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# A/B Testing
Questions, ideas and comments are welcomed.
You can either use the issues or send me an email drorata@gmail.com.
## The notebooks
The notebooks in this repository can be accessed using one of two methods:
### Binderhub
[](https://mybinder.org/v2/gh/drorata/abtest/master?filepath=%2Fnotebooks)
This will run a remote environment where you can play around interactively with the notebooks
### (Local) docker
A `Dockerfile` is provided as well.
To use it, simply build it:
```bash
$ docker build -t abtest .
```
Make sure you execute the above from the root directory of the repository.
Furthermore, `abtest` is the name of the image to be built; you can change it as you wish.
Secondly, run the image:
```bash
$ docker run -it --rm -p 8811:8888 abtest
```
This way, the Jupyter server which will start in the container will be accessible at `localhost:8811`.
## Credits
This package was created with [`Cookiecutter`](https://github.com/audreyr/cookiecutter) and the [`audreyr/cookiecutter-pypackage`](https://github.com/audreyr/cookiecutter-pypackage) project template.