├── .gitignore ├── LICENSE ├── README.md ├── docs └── README.md ├── notebooks ├── Example.ipynb ├── UdacityCourseNotes.ipynb ├── Walkthrough.ipynb ├── bayesian_ab_testing.ipynb ├── dist_of_proportion.ipynb ├── min_sample_size.ipynb ├── split_testing.ipynb ├── test_data.ipynb ├── test_plot.ipynb ├── test_stats.ipynb ├── two_proportions.ipynb └── z-dist.ipynb ├── requirements.txt └── src ├── data.py ├── plot.py └── stats.py /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | .vscode/ 3 | venv/ 4 | __pycache__/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/docs/README.md -------------------------------------------------------------------------------- /notebooks/Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/Example.ipynb -------------------------------------------------------------------------------- /notebooks/UdacityCourseNotes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/UdacityCourseNotes.ipynb -------------------------------------------------------------------------------- /notebooks/Walkthrough.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/Walkthrough.ipynb -------------------------------------------------------------------------------- /notebooks/bayesian_ab_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/bayesian_ab_testing.ipynb -------------------------------------------------------------------------------- /notebooks/dist_of_proportion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/dist_of_proportion.ipynb -------------------------------------------------------------------------------- /notebooks/min_sample_size.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/min_sample_size.ipynb -------------------------------------------------------------------------------- /notebooks/split_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/split_testing.ipynb -------------------------------------------------------------------------------- /notebooks/test_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/test_data.ipynb -------------------------------------------------------------------------------- /notebooks/test_plot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/test_plot.ipynb -------------------------------------------------------------------------------- /notebooks/test_stats.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/test_stats.ipynb -------------------------------------------------------------------------------- /notebooks/two_proportions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/two_proportions.ipynb -------------------------------------------------------------------------------- /notebooks/z-dist.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/notebooks/z-dist.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/src/data.py -------------------------------------------------------------------------------- /src/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/src/plot.py -------------------------------------------------------------------------------- /src/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnguyenngo/ab-framework/HEAD/src/stats.py --------------------------------------------------------------------------------