GNOME Bugzilla – Bug 325330
Report to show number of users per points
Last modified: 2006-02-13 05:43:01 UTC
Add a stats page about points and how many users currently have this score. Just a simple list, starting somwehere low and going up to the highest score, showing the number of users with this score. Plus, maybe, a total count of users, etc... Everyody is curious. Everybody wants to see how he compares to others. :)
Here's the intermediate answer, which we can probably turn into a report somewhere. :) mysql> select count(realname), points from profiles group by points order by points desc; +-----------------+--------+ | count(realname) | points | +-----------------+--------+ | 1 | 27 | | 1 | 26 | | 5 | 25 | | 4 | 24 | | 7 | 23 | | 11 | 22 | | 19 | 21 | | 18 | 20 | | 19 | 19 | | 36 | 18 | | 30 | 17 | | 33 | 16 | | 48 | 15 | | 60 | 14 | | 73 | 13 | | 91 | 12 | | 112 | 11 | | 129 | 10 | | 165 | 9 | | 227 | 8 | | 360 | 7 | | 557 | 6 | | 897 | 5 | | 1705 | 4 | | 4043 | 3 | | 12890 | 2 | | 48429 | 1 | | 37468 | 0 | +-----------------+--------+ 28 rows in set (0.40 sec)
http://bugzilla.gnome.org/reports/points.cgi Also linked to from http://bugzilla.gnome.org/page.cgi?id=points.html now. :)