Moderators have a view of the site's statistics, but they cannot share the specifics. So, I'm starting this post to keep track of the evolution of our statistics over time. Please feel free to update it every now and then:

  Date           Qs/day     Visits/day     A. ratio     Total users    Avid users
  -------------------------------------------------------------------------------
  2012-07-04     4.6        448
  2012-10-04     4.0        700
  2012-11-12     4.0        994            2.5          1986
  2012-11-19     3.7       1005            2.6          2048           184
  2012-11-28     5.2       1068            2.6          2123           190
  2012-12-03     5.7       1068            2.6          2154           192
  2012-12-10     3.9       1093            2.6          2194           195
  2012-12-17     4.4       1109            2.5          2275           200
  2013-01-01     3.1        765            2.6          2361           207
  2013-01-07     3.5        772            2.6          2402           209
  2013-01-14     4.9       1056            2.6          2471           212
  2013-01-21     6.1       1308            2.6          2549           216
  2013-01-28     6.0       1392            2.6          2640           222
  2013-02-04     6.1       1397            2.7          2786           235
  2013-02-11     6.1       1452            2.7          2835           237
  2013-02-18     5.5       1312            2.7          2903           240
  2013-02-25     4.5       1361            2.7          2978           244
  2013-03-04     4.9       1449            2.7          3101           248
  2013-03-11     6.2       1533            2.7          3173           254
  2013-03-18     6.5       1557            2.7          3240           262
  2013-03-26     5.8       1653            2.7          3324           271
  2013-04-02     5.0       1651            2.7          3486           283
  2013-04-08     5.7       1621            2.7          3545           288
  2013-04-15     6.0       1572            2.7          3612           292
  2013-04-22     6.6       1497            2.7          3684           293
  2013-04-29     6.9       1485            2.7          3749           296
  2013-05-14     4.5       1458            2.7          3861           303
  2013-06-10     5.7       2008            2.7          4142           318
  2013-06-18     4.6       2008            2.7          4198           322

I use the Area51 page as source for those stats.


Graph of the visits/day:

    enter image description here

Evolution of the number of users:

    enter image description here

Questions per day:

    enter image description here

And here's the Quantcast estimate of site traffic, with a sparkline for the last 6 months, mean number of visitors per month, and highest and lowest daily visitor count in the last 6 months:
enter image description here

share
Why do we have historical Qs/day and Visits/day, but not A. ratio and Total users? – gerrit Nov 12 '12 at 13:29
@gerrit because I found those mentioned in a chat room message and in a meta post… but only questions and visits were quoted. – F'x Nov 12 '12 at 13:48
If I recall correctly, the answers/day has been constant at 2.5 for a long time. – Suresh Nov 13 '12 at 22:11
I think more people need to get involved. As of now its just a site to get your questions answered by 'a very select few' people. Not everyone answers questions here. Its typically 5-10% of the entire set of people who answer the questions. This is unlike other SE sites. – Naresh Dec 4 '12 at 6:55
2  
@Naresh it is not that select for a beta site. We have 24 users with 2000+ rep which suggests that at least 24 people are/were regularly answering questions. – Daniel E. Shub Dec 5 '12 at 9:02
5  
@F'x many thanks for your work in keeping this updated. It's great to see our progress – EnergyNumbers Jan 29 at 9:06
1  
We seem to be in the green for everything except Q/day which is "okay". Does that mean we can graduate from beta soon? – Artem Kaznatcheev Mar 16 at 9:33
I have taken the liberty to add the tag "feature request". I hope that it is not going to far. I am surprised that these data aren't already available on area51. – Daniel E. Shub Mar 18 at 13:35
@ArtemKaznatcheev - See this answer for some clarity on getting out of beta. – eykanal Mar 28 at 17:30
@DanielE.Shub - Unfortunately, that tag isn't going to get any attention here. Try posting it on the main SO meta site, which also serves as a general meta for questions like this for all the stack exchange sites. If you haven't posted there before, though, do note that they can be a bit rough on the newbies; they don't hesitate to downvote over there. Take it in stride :) – eykanal Mar 28 at 17:32

1 Answer

I didn't want to make the post overlong, so I paste here the Mathematica code used to make the graph from the raw data (multiline string stored pasted in variable s):

t = StringSplit /@ StringSplit[s, "\n"];
time = ToExpression@StringSplit[#, "-"] & /@ t[[All, 1]];
values = ToExpression@t[[All, 2 ;;]];
DateListPlot[Riffle[time, values[[All, 2]]]~Partition~2, 
  PlotStyle -> Directive[Red, PointSize[Large]], PlotRange -> {All, {0, Automatic}},
  FrameLabel -> Style["Visits per day", 14]]
share

You must log in to answer this question.

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