├── .gitignore ├── Bayesian AB Testing ├── Conversions │ ├── Bayesian AB Testing - Part I - Conversions.ipynb │ ├── Chosen Prior.png │ ├── Joint Posterior.png │ ├── Posteriors.png │ ├── Priors.png │ ├── generate_experiment_data.py │ ├── generate_prior_data.py │ ├── prior_analysis.py │ └── results_analysis.py ├── Priors │ ├── Bayesian AB Testing - Part IV - Choice of Prior.ipynb │ ├── CR Hist.png │ ├── CR Prior.png │ ├── Priors.png │ ├── Rev Prior.png │ ├── Trace.png │ ├── generate_prior_data.py │ ├── inspection.py │ ├── mcmc.py │ └── plots.py ├── Revenue │ ├── Bayesian AB Testing - Part II - Revenue.ipynb │ ├── Conversion Posteriors.png │ ├── Posteriors.png │ ├── Reciprocal Posteriors.png │ ├── Revenue per User Posteriors.png │ ├── generate_experiment_data.py │ ├── generate_prior_data.py │ ├── prior_analysis.py │ └── results_analysis.py └── Test Duration │ ├── Bayesian AB Testing - Part III - Test Duration.ipynb │ ├── Conclusive_Simulations.png │ ├── Conclusive_Simulations_EL.png │ ├── Conclusive_Simulations_LAMBDA.png │ ├── Conclusive_Simulations_MTE.png │ ├── Conversion Rates Simulation.png │ ├── Expected Loss Simulation 1.png │ ├── Expected Loss Simulation 2.png │ ├── Expected Loss Simulation 3.png │ ├── Expected Loss Simulation 4.png │ ├── Expected Loss Simulation 5.png │ ├── Expected Loss Simulation.png │ ├── Multiple_Simulations.png │ ├── Multiple_Simulations_0_0005.png │ ├── Multiple_Simulations_0_003.png │ ├── Multiple_Simulations_34.png │ ├── Multiple_Simulations_41.png │ ├── Multiple_Simulations_Zoomed_In.png │ ├── Print_Conclusive_Simulations.png │ ├── Print_Conclusive_Simulations_EL.png │ ├── Print_Conclusive_Simulations_LAMBDA.png │ ├── Print_Conclusive_Simulations_MTE.png │ ├── Single_Simulation.png │ ├── duration.py │ ├── plotting.py │ └── simulations.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/.gitignore -------------------------------------------------------------------------------- /Bayesian AB Testing/Conversions/Bayesian AB Testing - Part I - Conversions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Conversions/Bayesian AB Testing - Part I - Conversions.ipynb -------------------------------------------------------------------------------- /Bayesian AB Testing/Conversions/Chosen Prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Conversions/Chosen Prior.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Conversions/Joint Posterior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Conversions/Joint Posterior.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Conversions/Posteriors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Conversions/Posteriors.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Conversions/Priors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Conversions/Priors.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Conversions/generate_experiment_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Conversions/generate_experiment_data.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Conversions/generate_prior_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Conversions/generate_prior_data.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Conversions/prior_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Conversions/prior_analysis.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Conversions/results_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Conversions/results_analysis.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/Bayesian AB Testing - Part IV - Choice of Prior.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/Bayesian AB Testing - Part IV - Choice of Prior.ipynb -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/CR Hist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/CR Hist.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/CR Prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/CR Prior.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/Priors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/Priors.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/Rev Prior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/Rev Prior.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/Trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/Trace.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/generate_prior_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/generate_prior_data.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/inspection.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/mcmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/mcmc.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Priors/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Priors/plots.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Revenue/Bayesian AB Testing - Part II - Revenue.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Revenue/Bayesian AB Testing - Part II - Revenue.ipynb -------------------------------------------------------------------------------- /Bayesian AB Testing/Revenue/Conversion Posteriors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Revenue/Conversion Posteriors.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Revenue/Posteriors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Revenue/Posteriors.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Revenue/Reciprocal Posteriors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Revenue/Reciprocal Posteriors.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Revenue/Revenue per User Posteriors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Revenue/Revenue per User Posteriors.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Revenue/generate_experiment_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Revenue/generate_experiment_data.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Revenue/generate_prior_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Revenue/generate_prior_data.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Revenue/prior_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Revenue/prior_analysis.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Revenue/results_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Revenue/results_analysis.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Bayesian AB Testing - Part III - Test Duration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Bayesian AB Testing - Part III - Test Duration.ipynb -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Conclusive_Simulations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Conclusive_Simulations.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Conclusive_Simulations_EL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Conclusive_Simulations_EL.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Conclusive_Simulations_LAMBDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Conclusive_Simulations_LAMBDA.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Conclusive_Simulations_MTE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Conclusive_Simulations_MTE.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Conversion Rates Simulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Conversion Rates Simulation.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Expected Loss Simulation 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Expected Loss Simulation 1.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Expected Loss Simulation 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Expected Loss Simulation 2.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Expected Loss Simulation 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Expected Loss Simulation 3.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Expected Loss Simulation 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Expected Loss Simulation 4.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Expected Loss Simulation 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Expected Loss Simulation 5.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Expected Loss Simulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Expected Loss Simulation.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Multiple_Simulations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Multiple_Simulations.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Multiple_Simulations_0_0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Multiple_Simulations_0_0005.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Multiple_Simulations_0_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Multiple_Simulations_0_003.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Multiple_Simulations_34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Multiple_Simulations_34.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Multiple_Simulations_41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Multiple_Simulations_41.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Multiple_Simulations_Zoomed_In.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Multiple_Simulations_Zoomed_In.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Print_Conclusive_Simulations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Print_Conclusive_Simulations.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Print_Conclusive_Simulations_EL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Print_Conclusive_Simulations_EL.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Print_Conclusive_Simulations_LAMBDA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Print_Conclusive_Simulations_LAMBDA.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Print_Conclusive_Simulations_MTE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Print_Conclusive_Simulations_MTE.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/Single_Simulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/Single_Simulation.png -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/duration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/duration.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/plotting.py -------------------------------------------------------------------------------- /Bayesian AB Testing/Test Duration/simulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ksureshkumar-loveshark/blogs_public/HEAD/Bayesian AB Testing/Test Duration/simulations.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # blogs --------------------------------------------------------------------------------