Guest User

Untitled

a guest
Jul 18th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. $avg_num_votes = 18; // Average number of votes in all products
  2. $avg_rating = 3.7; // Average rating for all products
  3. $this_num_votes = 6; // Number of votes for this product
  4. $this_rating = 4; // Rating for this product
  5.  
  6.  
  7. $bayesian_rating = ( ($avg_num_votes * $avg_rating) + ($this_num_votes * this_rating) ) / ($avg_num_votes + $this_num_votes);
  8.  
  9. echo round($bayesian_rating); // 3
  10.  
  11. ((18 * 3.7) + (6 * 4)) / (18 + 6)
  12. (66.6 + 24) / (24)
  13. 90.6 / 24
  14. 3.775
Add Comment
Please, Sign In to add comment