A gentle introduction to the mathematics behind A/B testing

By Medium - 2020-12-10

Description

A/B testing is a tool that allows to check whether a certain causal relationship holds. For example, a data scientist working for an e-commerce platform might want to increase the revenue by…

Summary

  • A/B testing is a tool that allows to check whether a certain causal relationship holds.
  • Maybe, if we had run the experiment an other day, only l persons instead of k would have clicked on the link and then our estimate would have been In fact, to take into account all possible cases of the binomial count, we define the maximum likelihood estimator of p, as the random variable where Y has a binomial B(n, p) distribution.
  • So, we replace the observed value k by the random variable Y that gave rise to this observation to be able to take into account all possible outcomes of the experiment.
  • This allows us to think more generally about our experiment.

 

Topics

  1. Machine_Learning (0.15)
  2. UX (0.1)
  3. Management (0.06)

Similar Articles

Python enumerate(): Simplify Looping With Counters

By realpython - 2020-12-15

Once you learn about for loops in Python, you know that using an index to access items in a sequence isn't very Pythonic. So what do you do when you need that index value? In this tutorial, you'll lea ...

A Complete Guide to Flexbox

By CSS-Tricks - 2020-12-03

Our comprehensive guide to CSS flexbox layout. This complete guide explains everything about flexbox, focusing on all the different possible properties for the parent element (the flex container) and ...