1
$\begingroup$

My apologies if this is a basic question because I am no mathematician. Struck on my work on this, so came here to get some help.

I am working on this bayesian estimate explained here.
This is a bayesian estimator used to find out the Top 250 list of all the movies in Imdb.com with the following factors.
enter image description here

where,
W= weighted rating
R= average for the movie as a number from 0 to 10 (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.1)

Here what I am trying to do is to find the required number of votes and rating for a normal movies to get into the Top 250 list.
This is how I do it:

  1. Find the Weighted Rating(W) of 250th movie in the list.
  2. subtract 0.0001 to the W to get newW.
  3. With the new weighted rating I have to calculate the required number of votes and the rating.

This 3rd step is where I got struck. Can you simplify me an expression to calculate
1. required number of votes
2. Average Rating


Also the new required number votes should exclude the existing votes.

  • 0
    @joriki sorry.. m$a$de the correction now.2012-08-22

1 Answers 1

1

This is not Bayesian in my view. No matter.

Looking at the table itself, it seems to report $W$ rather than $R$ and it looks as if both $W$ and $C$ are rounded to 1 decimal place.

So you rewrite your formula as $R=\frac{W(v+m)-Cm}{v}.$

The film at place 250 has $W\approx 8$ so you need $W \gt\approx 8$ for your new film which, because of the rounding, makes it probably better to aim for $W \ge 8.05$. You have a $-$ before $C$ so for safety you should probably look at $C=7.05$ rather than $C \approx 7.1$. So your formula becomes $R \ge \frac{8.05(v+25000)-7.05 \times 25000}{v}=8.05+\frac{25000}{v}.$

So if you have 25,000 votes for the new film then you need $R \ge 9.05$, while if you have 250,000 votes you need $R \ge 8.15$.

The rounding is probably not quite as extreme as that so you might get away with slightly lower ratings. If you looking at the rounding as extreme in the opposite direction you would find that $R \le 8.75$ with 25,000 votes or $R \le 8.03$ with 250,000 votes would ensure you do not get into the top 250.

  • 0
    so, you saying given the current votes and total requirement, we have use above way to get remaining?2012-08-23