21/11/2020
Let’s take a look into one method - Bayesian Ranking
But how is it done? Don’t worry, we don’t dive deep into the maths
beta(1,1) distribution is a good choice.beta(20, 1) distributionbeta(1,20)beta(20,20) could be a good starterHow would these distributions look like?
The following plot shows individual priors: The probability for each star rating 1 to 5 on a continuous scale.
We see that beta(1,1) is has no particular maximum. beta(20,20) is right in the middle and beta(20,1) has it’s maximum right on the 5-star rating - far higher than the other distributions because the spread of probabilities is much smaller.
Let’s compare a product with six 5-star ratings against one with a product with twenty 4-star reviews and five 5-star review with an “average” beta(20,20) prior: \[
\text{Product 1} = beta(20 + 5, 20) = beta(25, 20) \\
\text{Product 2} = beta(20 + 20 \times \frac{3}{4} + 5, 20 + 20 \times \frac{1}{4}) = beta(40, 25)
\]
Given the prior of average reviews it would seem reasonable to choose the second product over the first one. The many 4-star reviews managed to shift the distribution more to the right than the five 5-star reviews. But what if you really don’t know if these products are good or bad and choose a non-informative beta(1,1)-prior?
Wow! Product 1 could now be a really awesome one - but also has a longer tail of being really aweful. Which one should you choose in this scenario?
The probability of being 95% better than x-Stars for these products is:
c(qbeta(.05, 6, 1) * 4 + 1, qbeta(.05, 21, 6) * 4 + 1)
## [1] 3.427849 3.549621
So even now product two wins. But remember: Choose your prior according to your knowledge! It can affect the outcome.
And furthermore: You could miss out on some really great new products with the disadvantage of being new and not properly reviewed. Choose your own risk you want to take, maybe it is okay for you to be wrong 20% of the time? Plug in the numbers and find out which product wins in this scenario.
And I hope you have learned something from this. For further details you can visit this Link where you can find more information about this method.
I hope you learned something new. Farewell!