Skip to content

Instantly share code, notes, and snippets.

@luckyshot
Created September 29, 2013 00:00
Show Gist options
  • Save luckyshot/6747941 to your computer and use it in GitHub Desktop.
Save luckyshot/6747941 to your computer and use it in GitHub Desktop.
Bayesian Rating algorythm
The formula for calculating the Top Rated 250 Titles gives a true Bayesian estimate:
weighted rating (WR) = (v ÷ (v+m)) × R + (m ÷ (v+m)) × C
where:
R = average for the movie (mean) = (Rating)
v = number of votes for the movie = (votes)
m = minimum votes required to be listed in the Top 250 (currently 25000)
C = the mean vote across the whole report (currently 7.0)
For the Top 250, only votes from regular voters are considered.
--
Source: http://www.imdb.com/chart/top?ref_=nb_mv_3_chttp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment