Just the other day I happened to notice that Jon Skeet has more badges than I have rep. Ouch.

So how much rep does the average SO user have?

share|improve this question
5  
Also, what is the median & standard deviation? – Pete Jul 23 '09 at 3:57

2 Answers

According to the June data dump...

Select Avg(reputation) From users

...it's 182.93 (using Kyle's sqlite import of the dump).

Ian's excellent statoverflow tool OTOH, produces 194.0018

Ian also suggests excluding users with a reputation of 1. With that done, you could say that the average reputation, for users who have reputation, is 358.9613!

share|improve this answer
Is that registered users only? – phenry Jul 23 '09 at 3:24
Did you use statoverflow? – jjnguy Jul 23 '09 at 3:25
statoverflow gives me 194.0018. WTH? – Shog9 Jul 23 '09 at 3:27
of course, this would be heavily weighted by the large number of users with a reputation of 1 – a_m0d Jul 23 '09 at 3:29
2  
I come up with a different answer for June, statoverflow.com/sandbox/… . Not sure whose side the error lies on. Also, a somewhat more accurate portrait of the average, statoverflow.com/sandbox/… – Ian Elliott Jul 23 '09 at 3:29
Oh - and i used Kyle's sqlite import to get the result in the answer. – Shog9 Jul 23 '09 at 3:31
@Ian: ah - so that's how you make a link to it! – Shog9 Jul 23 '09 at 3:32
7  
Select Avg(reputation) FROM users WHERE reputation > 100 - 923.7 – jjnguy Jul 23 '09 at 3:34
Those are the people I consider to be active users. – jjnguy Jul 23 '09 at 3:35
The error could be in my side, I'll be re-factoring everything in a few days. Also the linking is kind of a hack ATM, I've integrated it along with some other things which I'll upload after I'm done midterms since I'm not completely done and the two versions are incompatible. /offtopic – Ian Elliott Jul 23 '09 at 3:38
@Ian: I haven't released a SQLite version of the latest dump, so it's a difference of old data/new data. However, this post has given me the push I needed to get back to work on it ;-) – Kyle Cronin Jul 23 '09 at 4:06
Good point on the 'active users' jinguy. But the rep value where people are considered to be active is always going to be difficult to agree on ; ) – David HAust Jul 23 '09 at 4:24
I get 182.9326 from june dump – Stu Thompson Jul 23 '09 at 10:06
1  
if you exclude users with 1 rep - or less than 100 rep - as outliers, then you must also exclude outliers like Jon Skeet! – Steven A. Lowe Jul 23 '09 at 13:15
1  
Select Avg(reputation) FROM users WHERE reputation between 100 and 30000 = ~886 – Dave Jarvis Jul 30 '09 at 16:27
show 1 more comment

I think the Median rep would tell you more than the mean.

(There are many types of averages to choose from.)

You may wish to exclude users with only 1 rep, or to exclude all users that have never ask a question or given an answer.

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged