How to Make Easy & Flexible Star Ratings
nerds.airbnb.com
How to Make Easy & Flexible Star Ratings
1–10 of 40 posts
Re: How to Make Easy & Flexible Star Ratings
#2Re: How to Make Easy & Flexible Star Ratings
#3Re: How to Make Easy & Flexible Star Ratings
#4Re: How to Make Easy & Flexible Star Ratings
#5This is a great discussion of the mechanics of rendering star ratings in a browser. I'd love to see a companion theory post on how to intelligently compute and rank such ratings. The arithmetic mean is notoriously sensitive to outliers, and the consequences are sometimes severe: I know a resort in Thailand that used to be ranked #1 on TripAdvisor on its island (Koh Phangan), only to fall to #17 after a 1-star review.…
http://www.evanmiller.org/how-not-to-sort-by-average-rating....
Re: How to Make Easy & Flexible Star Ratings
#6Re: How to Make Easy & Flexible Star Ratings
#7This is a great discussion of the mechanics of rendering star ratings in a browser. I'd love to see a companion theory post on how to intelligently compute and rank such ratings. The arithmetic mean is notoriously sensitive to outliers, and the consequences are sometimes severe: I know a resort in Thailand that used to be ranked #1 on TripAdvisor on its island (Koh Phangan), only to fall to #17 after a 1-star review.…
Re: How to Make Easy & Flexible Star Ratings
#8This is a great discussion of the mechanics of rendering star ratings in a browser. I'd love to see a companion theory post on how to intelligently compute and rank such ratings. The arithmetic mean is notoriously sensitive to outliers, and the consequences are sometimes severe: I know a resort in Thailand that used to be ranked #1 on TripAdvisor on its island (Koh Phangan), only to fall to #17 after a 1-star review.…
Use the algorithm given here: http://www.evanmiller.org/how-not-to-sort-by-average-rating....
Re: How to Make Easy & Flexible Star Ratings
#9So, when this article says "The goal is to avoid having a sprite that looks like this" where the sprite has all the values of stars in a line... why did people switch to doing it that way in the first place? Like the article says, it's a pain to maintain, has lots of pixels, and is not resizable.
Re: How to Make Easy & Flexible Star Ratings
#10It's interesting that the year 2000 way to do stars would be to have a full, empty, and half star GIF, and just to display however many stars you need by doing a loop. So, when this article says "The goal is to avoid having a sprite that looks like this" where the sprite has all the values of stars in a line... why did people switch to doing it that way in the first place? Like the article says, it's a pain to mainta…