The question I set out to answer was: Which tags on Stack Overflow are more popular during business days, which during weekends? This post is not really a question, just something I'd like to share with the Stack Overflow community. If these analyses are inappropriate here, please inform me, because I would like to do more of them and will post them unless someone stops me.
Algorithm
From the April 2010 data dump, I've extracted a list of tags that exhibit notable variation between week days. The Python scripts (source here and here) work as follows:
- Take all questions, and determine the day of the week on which they were first created. Note that all users are assumed to be in Greenwich during the winter; there's no simple way to avoid this.
- For all tags, count the number of occurrences for each day of the week.
- Divide these numbers by the total count for the corresponding week day to get relative frequencies per week day.
- Take only the tags used for more than 5000 questions to filter out statistical noise. This number was determined empirically to give a nice short list of the most salient results.
- Normalize the frequencies within each tag so their average becomes 1.
- Rank the tags by the standard deviation of the normalized frequency as a function of the week day.
- Group them by business days and weekends.
And out pops the result! The number in parentheses is the standard deviation of the normalized frequencies, as described above.
Business days
sql-serveris most popular on Wednesday (0.513)linqis most popular on Monday (0.299)asp.netis most popular on Thursday (0.294)visual-studiois most popular on Thursday (0.275)xmlis most popular on Wednesday (0.268)flexis most popular on Tuesday (0.267)vb.netis most popular on Tuesday (0.266).netis most popular on Friday (0.262)visual-studio-2008is most popular on Wednesday (0.259)wpfis most popular on Wednesday (0.256)sqlis most popular on Friday (0.256)winformsis most popular on Monday (0.217)c#is most popular on Thursday (0.200)windowsis most popular on Friday (0.130)asp.net-mvcis most popular on Monday (0.088)javais most popular on Wednesday (0.067)flashis most popular on Friday (0.064)regexis most popular on Friday (0.058)
Weekend days
beginneris most popular on Sunday (0.557)objective-cis most popular on Saturday (0.484)cis most popular on Sunday (0.465)iphone-sdkis most popular on Saturday (0.442)pythonis most popular on Sunday (0.357)phpis most popular on Sunday (0.342)rubyis most popular on Sunday (0.330)iphoneis most popular on Saturday (0.321)ruby-on-railsis most popular on Sunday (0.319)djangois most popular on Sunday (0.312)c++is most popular on Sunday (0.286)mysqlis most popular on Saturday (0.260)linuxis most popular on Sunday (0.223)androidis most popular on Saturday (0.221)subjectiveis most popular on Saturday (0.216)web-developmentis most popular on Saturday (0.200)best-practicesis most popular on Saturday (0.156)cssis most popular on Sunday (0.100)ajaxis most popular on Saturday (0.077)databaseis most popular on Saturday (0.077)htmlis most popular on Sunday (0.070)jqueryis most popular on Sunday (0.068)javascriptis most popular on Sunday (0.068)
Analysis
I find these results really interesting. Some things are as one would expect:
- Most of the "business days" segment is taken up by enterprise technologies, mainly .NET.
- Many (web)scripting languages are primarily used during weekends.
beginneris the most weekend-biased tag; time off is when people teach themselves. Employers, take heed!discussions take place mostly outside the boss's hours.
Other results surprised me more:
- Both C and C++ are apparently weekend languages. Would this be due to the open source movement? Garage game developers?
- Most of iPhone and Android development also takes place during the weekend.
- People do not reach for regexes during the weekend, but rather when the work week is nearly over anyway.
Comments and suggestions are welcome!