I am using the following code to come up with a Bayesian average for my product reviews:
@bayesian = (((Review.count * Review.average(:score)) + (style.reviews.count +style.reviews.average(:score)))/(Review.count+style.reviews.count)).to_int
as per this discussion (scroll a third down the page):
http://blog.linkibol.com/2010/05/07/how-to-build-a-popularity-algorithm-you-can-be-proud-of/
Now strangely, these are the results that I'm seeing on my page:

Obviously by the logic of the article I should be seeing a product with 4 votes and an average score of 59% shown with a higher Bayesian than a product with 1 vote and an average of 50%.
Is there a problem with my implementation here?
Review.countreturning the total number of reviews instead of the correct average number of reviews per style? – AJcodez Aug 4 '12 at 10:30