GoodI always use weighted average when rating things
![]()

I was explaining for the people who didn't get how it worked

Did you learn it in school?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
GoodI always use weighted average when rating things
![]()
Yea, it sorta works the way ice hockey goalie's goals against average stats are kept. This ensures that a goaltender who gets no goals against in one game played doesn't hold a higher standing than a goaltender who played 54 games with a 2.10 goals against average. I know there is barely anything in common with goalie stats and chicken coop ratings but it is the same ideaAs @Nifty-Chicken kindly included, this code is what the site is using.Code:// same as the xf resource manager to maintain a standard. public static $voteThreshold = 10; public static $averageVote = 3; public function getWeightedRating($count, $sum) { return (self::$voteThreshold * self::$averageVote + $sum) / (self::$voteThreshold + $count); }
It is taking our vote threshold, multiplying it by the average vote and adding the sum (total number of stars). It is then dividing that number by the vote threshold + the total number of reviews.
vote threshold = 10
average vote = 3
10 x 3 + total number of stars/ 10 + number of reviews
Take an article with 5 reviews and a total number of 18 stars
10 x 3 + 18/ 10 + 5 = Rating
I sure did learn it in schoolGood
I was explaining for the people who didn't get how it worked
Did you learn it in school?
I'm justYea, it sorta works the way ice hockey goalie's goals against average stats are kept. This ensures that a goaltender who gets no goals against in one game played doesn't hold a higher standing than a goaltender who played 54 games with a 2.10 goals against average. I know there is barely anything in common with goalie stats and chicken coop ratings but it is the same idea![]()
Awesome! I haven't taken statistics lol.I sure did learn it in schoolAs a kid I was oddly fascinated by the art of keeping statistics
![]()
That makes more sense to me. Thanks. Am not math head, at all.This ensures that a goaltender who gets no goals against in one game played doesn't hold a higher standing than a goaltender who played 54 games with a 2.10 goals against average.
I lost my spot and am now randomly choosing.
That's how our entire house hold isI'm justat the fact that the Canadian remembers Bayesian average statistics because it related to Hockey!!!
![]()
Boy, if I didn't already know you live in Canadia![]()
Ah, it's a handy thing and makes more sense to use than normal averageThat makes more sense to me. Thanks. Am not math head, at all.
...and it makes more sense to apply it to sports stats, than coop pages in the net.![]()