├── LICENSE ├── README.md ├── pdf ├── Bayesian AB-testing.pdf ├── Tutorial - Bayesian AB-testing - RSSS'25.pdf └── Tutorial - Bayesian AB-testing.pdf ├── requirements.txt └── src ├── ab_test ├── __init__.py └── graph.py ├── notebooks ├── bayesian_ab_testing.ipynb ├── bayesian_bandit_AA_testing.ipynb └── bayesian_bandit_AB_testing.ipynb ├── ui ├── AB_Test.py ├── __init__.py └── pages │ ├── Evaluation.py │ ├── Experiment_Design.py │ ├── Experiment_Design_new.py │ ├── Lab - Analysis_Beta_vs_Gauss.py │ └── Lab-Power-Analysis-for-CpC.py └── utils ├── __init__.py ├── bayesian_bandit_test.py ├── bayesian_test.py ├── campaign.py ├── graph.py ├── hypothesis_test.py └── ui.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/README.md -------------------------------------------------------------------------------- /pdf/Bayesian AB-testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/pdf/Bayesian AB-testing.pdf -------------------------------------------------------------------------------- /pdf/Tutorial - Bayesian AB-testing - RSSS'25.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/pdf/Tutorial - Bayesian AB-testing - RSSS'25.pdf -------------------------------------------------------------------------------- /pdf/Tutorial - Bayesian AB-testing.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/pdf/Tutorial - Bayesian AB-testing.pdf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/ab_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ab_test/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/ab_test/graph.py -------------------------------------------------------------------------------- /src/notebooks/bayesian_ab_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/notebooks/bayesian_ab_testing.ipynb -------------------------------------------------------------------------------- /src/notebooks/bayesian_bandit_AA_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/notebooks/bayesian_bandit_AA_testing.ipynb -------------------------------------------------------------------------------- /src/notebooks/bayesian_bandit_AB_testing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/notebooks/bayesian_bandit_AB_testing.ipynb -------------------------------------------------------------------------------- /src/ui/AB_Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/ui/AB_Test.py -------------------------------------------------------------------------------- /src/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ui/pages/Evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/ui/pages/Evaluation.py -------------------------------------------------------------------------------- /src/ui/pages/Experiment_Design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/ui/pages/Experiment_Design.py -------------------------------------------------------------------------------- /src/ui/pages/Experiment_Design_new.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/ui/pages/Experiment_Design_new.py -------------------------------------------------------------------------------- /src/ui/pages/Lab - Analysis_Beta_vs_Gauss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/ui/pages/Lab - Analysis_Beta_vs_Gauss.py -------------------------------------------------------------------------------- /src/ui/pages/Lab-Power-Analysis-for-CpC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/ui/pages/Lab-Power-Analysis-for-CpC.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/bayesian_bandit_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/utils/bayesian_bandit_test.py -------------------------------------------------------------------------------- /src/utils/bayesian_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/utils/bayesian_test.py -------------------------------------------------------------------------------- /src/utils/campaign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/utils/campaign.py -------------------------------------------------------------------------------- /src/utils/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/utils/graph.py -------------------------------------------------------------------------------- /src/utils/hypothesis_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/utils/hypothesis_test.py -------------------------------------------------------------------------------- /src/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arngren/bayesian-ab-test/HEAD/src/utils/ui.py --------------------------------------------------------------------------------