Here is a graph of the average reputation for each age, from the July 2009 data-dump:

Age vs rep

This doesn't prove anything really, although interestingly there is a steady increase in reputation with age..

For comparison, here is the graph from 2008-09-30:

Age vs rep on 2008-09-30

I've uploaded the code I used to Github. It's not exactly the greatest code ever, but it works ("on my machine").

so_agedist.py - it uses nobody_'s SQLite database which can be found here, and the pygooglecharts module to generate the above graph.

link|improve this question

53% accept rate
Watch out for those youngin'... looks like they run circles around the rest of us :) – Benoit Sep 30 '08 at 14:09
1  
Why did you stop at 56? – Brent.Longborough Sep 30 '08 at 14:15
7  
Wow, who's 2800 years old? ;-) – John Topley Sep 30 '08 at 14:24
1  
You might want to group it in 5-year lumps – Brent.Longborough Sep 30 '08 at 14:35
1  
Or a rolling window. – onebyone Sep 30 '08 at 14:54
So if there's no age listed (like for me), you just ignore that user? – mmyers Sep 30 '08 at 21:16
mmyers: Correct, the graph only contains people whose age field was non-empty – dbr Sep 30 '08 at 22:43
Mine is empty. I'm seriously considering throwing my weight behind the 8 year olds, they need more representation, and all to many people think of us high falutin' question closers as children anyway... ;-D – Adam Davis Oct 1 '08 at 3:24
Lol, so two months ago 3000 rep was king, things go very fast in here! – Gamecat Dec 8 '08 at 9:12
2  
Update the graph!!! – jjnguy Aug 19 '09 at 19:34
Yep, I've been meaning to update this since the data-dump was first released.. – dbr Aug 21 '09 at 2:12
Woo, I'm way above average for a 23 year old... except I'm on SF not SO... – Farseeker Aug 23 '09 at 23:25
feedback

migrated from stackoverflow.com Aug 5 '09 at 2:52

This question came from our site for professional and enthusiast programmers.

23 Answers

I want to meet the 7 year old with the 2800+ reputation.

link|improve this answer
It's probably aku. – TraumaPony Sep 30 '08 at 14:23
Blorgbeard (stackoverflow.com/users/369/blorgbeard). – xsl Sep 30 '08 at 14:24
People, don't believe TraumaPony. I'm almost 9 years old. – aku Oct 1 '08 at 3:14
Alas my kids are 6 and 8 so i can't schedule an arangement ;-). – Gamecat Oct 1 '08 at 12:24
I'm 15 and have almost 3,000 rep. Thats not very accurate... – Chacha102 Aug 5 '09 at 3:00
1  
I'm 8 and 3000 rep, but i always lie about my age. – IAdapter Oct 2 '09 at 12:53
feedback

What about a scatter plot with age on the X axis and rep on the Y axis? Another idea to remove the spikes would be to plot the total reputation of each age.

Oh, and if you could provide your data that you scraped in addition to the source of the script it would be helpful. I've been meaning to get around to something like this since it was requested a while ago.

update: Data that can be used to create this and similar graphs can be found here.

link|improve this answer
Nice data would be a csv with {Age,SO Age, Karma} – Brent.Longborough Sep 30 '08 at 16:15
I'm working on a script that will scrape all relevant data from the profile and put it into a SQLite database. Currently my columns are uid, name, rep, registered, joined, lastseen, website, location, age, questions, answers, votes, tags, and badges. Anything else I can include? – Kyle Cronin Sep 30 '08 at 16:17
I also included the short bio. The scrape is running now, but it could be a while to get all ~24,000 profiles. – Kyle Cronin Sep 30 '08 at 16:57
sooo this data? we wants it... our preciousssss... – Sklivvz Sep 30 '08 at 22:29
Sorry, I've been having scraping issues. You'll have it soon, but I plan to also do some interesting graphs and statistics with it before it's published. – Kyle Cronin Sep 30 '08 at 22:39
Unfortunately, the post has been deleted due to privacy considerations, so I can no longer supply you with the database. I will repost sometime with interesting graphs and trends, but you'll have to get the database yourself the hard way I'm afraid. I'm sorry. – Kyle Cronin Oct 1 '08 at 10:40
feedback

I wonder if there are points in your life where you get all community-minded, perhaps early thirties or perhaps early forties.

But perhaps sometimes you don't want to reveal your true age, so you claim you're seven or eight.

link|improve this answer
feedback

For those wondering about the first peak (8 year old), it’s Blorgbeard.

link|improve this answer
feedback

Since you get points for answering questions and for asking them, this graph is basically showing usage of the site by age.

link|improve this answer
feedback

Maybe you should not use the age of a person, but 'age' since (s)he created account on SO.

link|improve this answer
feedback

What if you omit points where there are too few users with that age? Or average them into the ages near them to smooth the spike.

Also, what about comparing reputation between users who provide an age and users who don't?

link|improve this answer
feedback

And at the age of 33 we see the "Justin Standard Bump"

It reminds me of the Ballmer Peak.

link|improve this answer
According to his profile, Justin Standard is 27 – Kyle Cronin Sep 30 '08 at 14:22
@nobody: yeah but that hurts my joke :) – Schnapple Sep 30 '08 at 16:58
feedback

I'd be interested in the Correlation Coefficient.

link|improve this answer
feedback

Really nice! Am I the only one who thinks this looks like a Gauss bell centered around 27, with the occasional pike here and there? I see a strong correlation in here!!

@dbr: would it be too much if I asked you to find the normal distribution curve that best fits your data? Else, if you have stored the data somewhere and could provide us the links, I'll do it myself.

Also, another graph comparing time since joining SO versus reputation would also be interesting. If the reputation is more strongly correlated to the time since you opened your account here than to your age then this first graph should just reflect the demographic tendencies of SO's audience (by the way, has anyone done this other graph, plotting number of SO's users per age?).

Thanks!

link|improve this answer
Great, i'm way past 27, does dat mean i have to settle for a management position? – Gamecat Oct 1 '08 at 12:27
feedback

I'm way behind of my average =/

link|improve this answer
feedback

I would like to see your data run through the Mann model, and see if it produces a hockey stick.

link|improve this answer
feedback

You could also put confidence intervals around the mean for each age, since I'm guessing we have a lot more 20-30 somethings than 50 somethings.

link|improve this answer
feedback

This is meaningless without suitable error bars...

link|improve this answer
feedback

Thanks for the update with the code and data. You might want to clean your duplicates out of your database. If you're using SQL to generate your averages, these multiple entries for a single user will throw them off.

sqlite> select id, count(id) from Users group by id having count(id)>1;
1|5
2|3
3|3
4|3
5|3
6|3
7|3
8|3
9|2
10|2
11|2
12|2
13|2
14|3
15|2
16|3
17|3
18|8
19|7
168|2
169|2
444|2
link|improve this answer
feedback

Eek! To all those that are my age... I'm sorry to drag you all down!

link|improve this answer
feedback

I'd like to see (reputation / time on SO) vs age (although I think years of programming experience would be better, that information is not available)

link|improve this answer
feedback

the spikes @ 7 & 11 days must be a result of hackery...

link|improve this answer
feedback

I actually lied about my age, too. It seemed like personal information that was irrelevant to the purpose of SO. I found it a little annoying that SO even asked for that information.

link|improve this answer
feedback

wow that google chart is indeed a very useful little gadget. Thanks a lot for introducing it.

There are so many cool python projects around to be discovered, anytime I code something and ask my friend what he thinks about it I get to hear "errrr that exists since a long time already, why didnt you use xyz, the NIH syndrome reached you already?"

link|improve this answer
feedback

Obviously programmer's peak at age 7 or so, compared to mathematicians who peak about 18-25.

That aside, I wouldn't place too much stock in a system of ratings where the only requirement to vote is to have an email account. It would be easy enough to create a system of bots that just post "Why is the sky blue", answer "just because", and upvote the answer from a thousand accounts ...

link|improve this answer
2  
@Larry, the system does have a 200 rep cap per day, and there is also a way to deal with voting anomalies (blog.stackoverflow.com/2009/03/more-voting-anomalies). Also for a question like "Why is the sky blue?" or any other trivial question (or non-question) would probably be closed and then likely deleted (hence destroying all rep gained). So there are safeguards, but you are right, lots of SO rep doesn't mean you're a good programmer. – Nathan Koop Jun 16 '09 at 13:01
Furthermore, you have to have 15 rep to upvote. So it would take quite a long time to create a system of bots (although come to think of it, you'd just need two of the older ones to upvote each of the newer ones). – mmyers Jun 16 '09 at 17:31
feedback

It would be interesting to separate out the top 100 users by reputation—the outliers. I think I see my spike :-)

link|improve this answer
feedback

Top 10 reasons why younger people have higher reps than older people:

10 - Older people have already forgotten the correct answers.

9 - Younger people can type infinitely fast with their thumbs and get their answer in 5 seconds faster.

8 - Older people have forgotten what they wanted to ask.

7 - Younger people think StackOverflow is a video game and go for bonus points.

6 - Older people ask questions about COBOL. Noone votes those up.

5 - Younger people texted and tweeted each other to find out about SO faster.

4 - Older people forget their login id and password and have to start over.

3 - Younger people have cooler gravitars.

2 - Older people have real jobs that take them away from Stackoverflow.

1 - Younger people are taking over.

link|improve this answer
I bet an "older" person -1'd me. Well I'm 52 myself, and I admit firsthand to all my even numbered points. – – lkessler Aug 20 '09 at 19:40
I've updated the graph with more recent data, and it seems you are wrong, average reputation seems to increase with age! – dbr Aug 23 '09 at 23:15
feedback

You must log in to answer this question.

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