vote up 40 vote down
star
9

After some scraping, and trying to find a decent way to graph then data (I ended up using Google Charts, via pyGoogleChart), here is a graph of the average reputation vs age:

Age vs rep

Doesn't really prove much, but it was an interesting little project to code, and I thought someone on here may be interested in the graph.

It's by no means perfect, as many users haven't filled in the age correctly, and the average reputation is much higher with less popular ages (thus the high spikes - if the only person whose age is 58 has a reputation of 1000, the average will be 1000..)

[Update. Code!]

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

so_profile_scraper.py parses the http://stackoverflow.com/users/1/ .../2/ profiles into a sqlite3 database.

The scraper will put quite a strain on poor StackOverflow's servers, so only run it if you really need too - I've provided the data I scraped (from user 1 to 21019, around september 24th) in...

so_userinfo.sqlite3 (You'll need to either use the Download button in the description box, or git clone the repository to get the file)

so_agedist.py uses the so_userinfo.sqlite3 database and the pygooglecharts module to generate the above graph. I'm sure there are many more interesting things you can do with it!

flag
Watch out for those youngin'... looks like they run circles around the rest of us :) – Benoit Sep 30 at 14:09
Why did you stop at 56? – Brent.Longborough Sep 30 at 14:15
2 
Wow, who's 2800 years old? ;-) – John Topley Sep 30 at 14:24
You might want to group it in 5-year lumps – Brent.Longborough Sep 30 at 14:35
Or a rolling window. – onebyone.livejournal.com Sep 30 at 14:54
add / show 4 more comments

21 Answers

vote up 18 vote down

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

link|flag
It's probably aku. – TraumaPony Sep 30 at 14:23
Blorgbeard (stackoverflow.com/users/369/blorgbeard). – xsl Sep 30 at 14:24
People, don't believe TraumaPony. I'm almost 9 years old. – aku Oct 1 at 3:14
Alas my kids are 6 and 8 so i can't schedule an arangement ;-). – Gamecat Oct 1 at 12:24
add comment
vote up 15 vote down

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|flag
Nice data would be a csv with {Age,SO Age, Karma} – Brent.Longborough Sep 30 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 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 at 16:57
sooo this data? we wants it... our preciousssss... – Sklivvz Sep 30 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 at 22:39
add / show 2 more comments
vote up 9 vote down

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|flag
add comment
vote up 7 vote down

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

link|flag
add comment
vote up 7 vote down

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

link|flag
add comment
vote up 6 vote down

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

link|flag
add comment
vote up 4 vote down

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|flag
add comment
vote up 4 vote down

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

It reminds me of the Ballmer Peak.

link|flag
According to his profile, Justin Standard is 27 – Kyle Cronin Sep 30 at 14:22
@nobody: yeah but that hurts my joke :) – Schnapple Sep 30 at 16:58
add comment
vote up 4 vote down

I'd be interested in the Correlation Coefficient.

link|flag
add comment
vote up 4 vote down

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|flag
Great, i'm way past 27, does dat mean i have to settle for a management position? – Gamecat Oct 1 at 12:27
add comment
vote up 2 vote down

I'm way behind of my average =/

link|flag
add comment
vote up 2 vote down

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

link|flag
add comment
vote up 2 vote down

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|flag
add comment
vote up 2 vote down

This is meaningless without suitable error bars...

link|flag
add comment
vote up 2 vote down

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|flag
add comment
vote up 1 vote down

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

link|flag
add comment
vote up 1 vote down

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|flag
add comment
vote up 1 vote down

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

link|flag
add comment
vote up 0 vote down

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|flag
add comment
vote up 0 vote down

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|flag
add comment
vote up 0 vote down

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|flag
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/…). 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 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 at 17:31
add comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.