Scripts to modify ErikZ data files into dygraph friendly format. Scripts for generati...
authordeclerambaul <fabian.kaelin@gmail.com>
Sun, 22 Apr 2012 17:50:35 +0000 (13:50 -0400)
committerdeclerambaul <fabian.kaelin@gmail.com>
Sun, 22 Apr 2012 17:50:35 +0000 (13:50 -0400)
15 files changed:
msc/old_rc_new/README.md [new file with mode: 0644]
msc/old_rc_new/comscore.py [new file with mode: 0644]
msc/old_rc_new/deploy.py [new file with mode: 0755]
msc/old_rc_new/fix-dates.sh [new file with mode: 0755]
msc/old_rc_new/input/PageViewsPerMonthPopularWikisNormalized_2012_02.csv [new file with mode: 0755]
msc/old_rc_new/input/StatisticsMonthly_2012_02.csv [new file with mode: 0755]
msc/old_rc_new/input/comscore/wikilytics_in_comscore_properties_uv.csv [new file with mode: 0755]
msc/old_rc_new/input/comscore/wikilytics_in_comscore_regions_reach.csv [new file with mode: 0755]
msc/old_rc_new/input/comscore/wikilytics_in_comscore_regions_uv.csv [new file with mode: 0755]
msc/old_rc_new/input/comscore/wikilytics_in_dictionary_regions.csv [new file with mode: 0755]
msc/old_rc_new/new_charts.py [new file with mode: 0644]
msc/old_rc_new/old_charts.py [new file with mode: 0644]
msc/old_rc_new/old_to_new.py [new file with mode: 0644]
msc/old_rc_new/parse_csv.py [new file with mode: 0644]
msc/old_rc_new/utils.py [new file with mode: 0644]

diff --git a/msc/old_rc_new/README.md b/msc/old_rc_new/README.md
new file mode 100644 (file)
index 0000000..b928dfe
--- /dev/null
@@ -0,0 +1,70 @@
+# Purpose
+
+Script to transform the data created for the [old report card](stats.wikimedia.org/reportcard) by Erik Zachte into the format required by the [new report card](reportcard.wmflabs.org). The data is not generated nor aggregated, the scripts simply extract the necessary data points to generate the charts on the report card. This is a temporary solution while the new analytics platform is in development.
+
+# Usage
+
+       python deploy.py [-h] [-c] [-m] [-p] [-d]
+
+       Convert data for new report card.
+
+       optional arguments:
+         -h, --help            show this help message and exit
+         -c , --comscore       <path> to the comscore files
+         -m , --monthlystats   Monthly statistics file
+         -p , --pageviews      Page views file
+         -d , --deploy         Copies created files from output folder to datasources folder
+
+
+# What is generated
+
+## Charts from old report card
+
+The input files and a list of graph data extracted from them.
+
+* `excel_in_PageViewsPerMonthPopularWikisNormalized_*.csv` contains:
+       *  Page Requests for All Wikimedia Projects (mobile & non-mobile) : lines 3-31
+* `excel_in_StatisticsMonthly_*.csv` contains:
+       * Binary Files : lines 521-535
+       * Wikipedia Articles (per wiki) : lines 263-290
+               * NOTE: Total is not displayed on old report card -> set 'visibility' to [0,1,1,1,1,1,1,1] on new report card
+               * only 8 largest wiki's
+       * New Wikipedia Articles Per Day (per wiki) : lines 349-376
+               * only 8 largest wiki's
+       * Wikipedia Edits Per Month (per wiki) : lines 435-462
+               * only first 5 wiki's
+       * New Editors Per Month for All Wikimedia Projects  : lines 2-29
+               * only first 10 wiki's
+       * Active Wikimedia Editors for All Wikimedia Projects (5+) : lines 89-116
+               * only first 10 wiki's
+               * Add the note : Aug 2010: Editors on Commons are no longer included in overall total, on the assumption that most also edit on one or more other projects. More precise detection of double counts between any projects and languages is planned for late 2010 (using Single User Login registration).
+       * Very Active Editors for All Wikimedia Projects (100+) : lines 176-203
+               * only first 10 wiki's
+               * Add the note : Aug 2010: Editors on Commons are no longer included in overall total, on the assumption that most also edit on one or more other projects. More precise detection of double counts between any projects and languages is planned for late 2010 (using Single User Login registration).
+
+The format of the comscore data has been made dygraph friendly by ErikZ (thanks), there are only cosmetic changes necessary.
+* Replacing region codes by actual region names
+* Only display selected web properties for comparison (`wikilytics_in_comscore_properties_uv.csv`)     
+
+
+## Charts not in the old report card
+
+* Targets
+       * Active Editors
+       * Mobile Page Requests
+* Mobile Page Requests
+
+
+## Directory structure
+
+       input/
+               excel_in_PageViewsPerMonthPopularWikisNormalized_*.csv
+               excel_in_StatisticsMonthly_*.csv
+               comscore/
+                       wikilytics_in_comscore_properties_uv.csv                        
+                       wikilytics_in_comscore_regions_uv.csv
+                       wikilytics_in_comscore_regions_reach.csv
+                       wikilytics_in_dictionary_regions.csv
+       
+
+
diff --git a/msc/old_rc_new/comscore.py b/msc/old_rc_new/comscore.py
new file mode 100644 (file)
index 0000000..f947892
--- /dev/null
@@ -0,0 +1,65 @@
+'''
+Adapts dygrap csv files comscore data
+
+ErikZ supplied dygraph friendly files for comescore.
+
+All that needs to be done is 
+       * crop the amount of data to match what is being shown in the report card
+       * replace region codes with region names
+
+'''
+
+import os
+
+from old_to_new import output_folder
+from old_to_new import comscore_directory
+
+from utils import fix_dates
+
+
+comscore_properties_fn = os.path.join(comscore_directory,'wikilytics_in_comscore_properties_uv.csv')
+comscore_regions_reach_fn = os.path.join(comscore_directory,'wikilytics_in_comscore_regions_reach.csv')
+comscore_regions_uv_fn = os.path.join(comscore_directory,'wikilytics_in_comscore_regions_uv.csv')
+
+comscore_regions_dictionary_fn = os.path.join(comscore_directory,'wikilytics_in_dictionary_regions.csv')
+
+
+
+comscore_regions_dictionary = {}
+for line in open(comscore_regions_dictionary_fn,'r'):
+       d = line[:-1].split(',')
+       comscore_regions_dictionary[d[1]] = d[2]
+
+
+def replaceRegion(fn):
+       data = open(fn,'r').read()
+       for c,r in comscore_regions_dictionary.items():
+               data = data.replace(c,r)
+       return data
+
+
+
+def filterProperties(props):
+       
+       
+
+       allprops = open(comscore_properties_fn,'r').read().split('\n')[0].split(',')
+
+       indices = [0] + [i for i,p in enumerate(allprops) if p in props]
+
+       o = open(os.path.join(output_folder,'rc_comscore_properties.csv'),'w')
+
+       for line in open(comscore_properties_fn,'r'):
+
+               fields = line[:-1].split(',')           
+
+               o.write(','.join([fields[i] for i in indices])+'\n')
+       
+
+
+def create_all():
+
+       open(os.path.join(output_folder,'rc_comscore_region_uv.csv'),'w').write(replaceRegion(comscore_regions_uv_fn))
+       open(os.path.join(output_folder,'rc_comscore_region_reach.csv'),'w').write(replaceRegion(comscore_regions_reach_fn))
+
+       filterProperties(['Total Internet','Google','Wikimedia'])
\ No newline at end of file
diff --git a/msc/old_rc_new/deploy.py b/msc/old_rc_new/deploy.py
new file mode 100755 (executable)
index 0000000..8f80a25
--- /dev/null
@@ -0,0 +1,79 @@
+#!/usr/local/python
+"""
+Converts all dygraph files and 'deploys' them to data folder
+"""
+import os,argparse
+import old_to_new
+
+def main():
+       parser = argparse.ArgumentParser(
+               description="""Convert data for new report card. 
+               """
+       )
+
+       parser.add_argument(
+               '-c', '--comscore',
+               metavar="",
+               type=str, 
+               default='./input/comscore',
+               help='<path> to the comscore files'
+       )
+       parser.add_argument(
+               '-m', '--monthlystats',
+               metavar='',
+               type=str, 
+               default="./input/StatisticsMonthly.csv",
+               help='Monthly statistics file'
+       )
+       parser.add_argument(
+               '-p', '--pageviews',
+               metavar='',
+               type=str, 
+               default="./input/PageViewsPerMonthPopularWikisNormalized.csv",
+               help='Page views file'
+       )
+       parser.add_argument(
+               '-d', '--deploy',
+               metavar='',
+               type=bool, 
+               default=False,
+               help='Copies created files from output folder to datasources folder'
+       )
+
+       args = parser.parse_args()
+       
+       # read config passed as argument
+
+       if os.path.exists(args.comscore): 
+               old_to_new.comscore_directory = args.comscore
+       else:
+               print "%s doesn't exist"%(args.comscore)
+               parser.print_help()
+               return
+       if os.path.isfile(args.monthlystats): 
+               old_to_new.monthly_stats = args.monthlystats
+       else:           
+               print "%s doesn't exist"%(args.monthlystats)
+               parser.print_help()
+               return
+       if os.path.isfile(args.pageviews): 
+               old_to_new.page_views = args.pageviews
+       else:            
+               print "%s doesn't exist"%args.pageviews
+               parser.print_help()
+               return
+
+
+       old_to_new.create_all()
+
+       # make sure all dates are correct, they come formatted in all kinds of ways...
+       os.system('./fix-dates.sh %s/*.csv'%old_to_new.output_folder)
+       os.system('rm %s/*.csv~'%old_to_new.output_folder)
+
+       if args.deploy:
+               print 'Deploying data files to ./datasources directory'
+               os.system("cp %s/*.csv ../../data/datasources/rc")
+
+       
+if __name__ == "__main__":
+       main()
\ No newline at end of file
diff --git a/msc/old_rc_new/fix-dates.sh b/msc/old_rc_new/fix-dates.sh
new file mode 100755 (executable)
index 0000000..dfb1e0e
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+ssed -i~ -R \
+    -e 's!^(\d{4})[/\-](\d{2}),!\1/\2/01,!' \
+    -e 's!^(\d{4})[/\-](\d),!\1/0\2/01,!' \
+    -e 's!^(\d{4})[/\-](\d{2})[/\-](\d{2}),!\1/\2/\3,!' \
+    -e 's!^(\d{4})[/\-](\d)[/\-](\d{2}),!\1/0\2/\3,!' \
+    -e 's!^(\d{4})[/\-](\d{2})[/\-](\d),!\1/\2/0\3,!' \
+    -e 's!^(\d{4})[/\-](\d)[/\-](\d),!\1/0\2/0\3,!' $*
+
diff --git a/msc/old_rc_new/input/PageViewsPerMonthPopularWikisNormalized_2012_02.csv b/msc/old_rc_new/input/PageViewsPerMonthPopularWikisNormalized_2012_02.csv
new file mode 100755 (executable)
index 0000000..48f28a8
--- /dev/null
@@ -0,0 +1,101 @@
+=== Page view data are normalized to 30 day months ===
+
+=== Page view totals non-mobile + mobile ===
+
+,,,,,,,,project,07/2008,08/2008,09/2008,10/2008,11/2008,12/2008,01/2009,02/2009,03/2009,04/2009,05/2009,06/2009,07/2009,08/2009,09/2009,10/2009,11/2009,12/2009,01/2010,02/2010,03/2010,04/2010,05/2010,06/2010,07/2010,08/2010,09/2010,10/2010,11/2010,12/2010,01/2011,02/2011,03/2011,04/2011,05/2011,06/2011,07/2011,08/2011,09/2011,10/2011,11/2011,12/2011,01/2012,02/2012
+,,,,,,,,English,5135131814,4974344046,5479533823,5509405206,5415832055,5043588824,5615498275,5943558064,6092089410,5988817321,6066080834,5818924182,5614497075,5604048759,5937922018,6041279704,5841504417,5258610830,5883232992,6227014896,6446465754,8213623221,8126959544,7841269693,7728611935,7435888138,7572220871,7526863400,7552720233,7197323670,7886321417,7905363844,7532208472,7345492982,7313738255,7129490662,6968286733,7263497053,7483008091,7881085908,8314617939,7950128284,8576588259,8782733975,English
+,,,,,,,,Japanese,973755192,969975425,998032211,974745059,925842966,867622536,1020040333,1015724496,965824332,935725490,1054087578,1076231552,1071919060,1056863842,1036022366,1042122587,1018879252,947765303,1083201946,1060245098,979748084,1152028494,1276258833,1260772500,1275749319,1222127187,1200138702,1185314758,1192956965,1104993076,1230270379,1235772520,1195941376,1185126548,1255860535,1227660371,1247518154,1321459774,1314236262,1322496602,1321316510,1253215909,1438625504,1431170650,Japanese
+,,,,,,,,Spanish,445589582,529752195,640332042,659209518,618951709,429593165,525897906,664767977,708812666,622529405,712546000,689177935,568949734,670114201,805384131,793041104,750257494,500123563,608651538,776934909,740804448,953794373,999782289,939990212,762596690,872071201,1018472015,1020227911,1029077915,748120629,870565050,1017498578,1071499890,961460241,1074132146,979439804,858854640,1054094317,1195023458,1234884164,1214871541,899244274,1035012747,1211719057,Spanish
+,,,,,,,,German,755196668,778407514,817672904,829895189,1007854264,1434267602,1270923077,981701403,978324435,816911070,875354334,908943732,818710227,812759742,888953956,884514330,903770333,759783399,916028392,890617318,809344045,957331874,986952926,955135652,901839447,936931491,989808185,973748712,1062730731,965473265,1155753949,1010369643,1000548752,902105087,1035675916,1009279530,959536382,966935930,988041057,1028580510,1079434677,1038191276,1192489116,1144831051,German
+,,,,,,,,Russian,113662290,121195082,157256924,173119199,193302177,225726994,244179932,261464142,284750415,275645537,285393526,287430317,249613491,263291318,305019697,336490934,350558815,342298682,377526978,414429038,358678986,438267171,467543830,456898699,386032551,408043313,494069475,525512847,569946243,587252199,643666675,663129902,649943184,646546023,647533682,626252967,568028951,586031773,667136987,740428763,789448080,810251079,872056989,903756130,Russian
+,,,,,,,,French,311381016,312562951,407994179,426838989,456433510,398506291,489329700,489587152,510839619,513244212,517848086,478907393,402046348,405401461,468445343,517691251,517541264,456708198,532464602,527713863,493544465,550218307,573315069,536451155,482220859,510089112,586890265,598622500,657362614,619085980,697123896,657610990,656422906,624116684,653114631,626267778,593023383,654016689,682681634,745267659,760596481,723308805,790998265,780606431,French
+,,,,,,,,Italian,253142528,226788304,292094070,284785396,295167835,268936529,323865050,331462012,333628746,321232353,325172932,338916224,302151993,281213653,348829233,340393236,335486809,292954921,351946559,362298914,312331661,384760757,406586246,408035119,362128116,356296434,423485286,402327375,431446650,413147136,483901692,482438649,455497552,428441438,448293094,460398540,435822986,437389278,486928748,490790504,488252826,467374419,536237275,532471720,Italian
+,,,,,,,,Polish,234225988,211318513,287289924,301285766,337306352,322567403,378558789,347846184,377900102,308548956,332734072,278123553,236721174,240422472,300273886,308831445,316542276,280035263,330343587,333559188,290930249,375442104,354824282,313548352,275571949,261579605,331023989,337041064,368234903,344403351,399794372,380045742,369036179,366456611,402103348,378221427,300638810,316730460,364074513,428942214,445008647,452463403,485460797,440555430,Polish
+,,,,,,,,Portuguese,191948515,212572828,234763094,224667556,232643623,160738596,174107513,196230523,251252007,226136663,249247379,251823530,204964404,238925366,284662734,264892776,270789097,193279861,204134794,226332964,259419247,323138528,348232821,352770011,283352580,323641010,346795253,326212376,365719957,286499670,294122739,317213016,355257961,347411579,366290552,353245471,306828703,374838420,390511890,392845877,394908641,329839164,328950041,344983877,Portuguese
+,,,,,,,,Commons,147198722,166728211,172745424,163016553,155181903,171606409,203440658,215841091,228669608,206210403,216904520,211603143,194753631,187288078,198318542,269267629,253990187,221185599,242518817,234238776,203288687,203952165,201213335,174934060,172118495,173515273,184470049,192223224,192235579,189503109,198748676,228902671,185372852,170391437,175539199,214802296,225011966,236364195,245113122,257511245,242692726,251262938,274431220,262299702,Commons
+,,,,,,,,Chinese,53599233,54652909,56351275,65176272,63031093,59757307,55920492,58949967,60625596,60425864,66910263,68284748,70063047,74882729,71061187,80834159,76538062,72849396,76239687,75997773,77145897,86612525,54595418,59935857,51554153,48453125,49142393,49040584,53566990,51518400,51250188,82756286,137661124,164030268,160323606,169365883,173475768,188677789,191395503,200442117,203763504,217692808,213513690,238321704,Chinese
+,,,,,,,,Dutch,109482172,112861810,137655804,144666344,149779808,132708796,154382684,147131644,157678285,133250642,142677626,141884963,115720215,117674624,139838402,149322508,148536508,127605068,147926332,144753200,134407073,149989491,161677524,160908787,132200932,138740660,155321749,165769831,164086819,155426061,183224428,173692454,170313950,159491382,177875326,173214454,154271752,165946806,179208989,193931076,192045129,182406904,204074606,199042810,Dutch
+,,,,,,,,Turkish,49187274,48663318,60674010,69733100,73921469,75455574,73635066,78329058,83164574,76806392,71775003,60581767,56749142,56886594,58705956,73961629,66784898,75806789,68505345,67519386,64801318,78186853,76152372,66524669,59303763,59419557,64023235,76567784,75745683,90856405,92131256,94112386,92269765,100097115,92010775,79891396,77454188,88423754,89228684,107018552,105679043,115175505,114983329,114870590,Turkish
+,,,,,,,,Swedish,48499395,55109178,70463628,71814872,75656464,69420845,78175318,79876681,82314658,69032419,72702863,59548555,57888995,65901106,77203081,76680349,74533396,63647306,75306569,80708125,69303570,77890331,85677559,71148063,68125237,74387717,86638772,88437703,87263838,84737437,96803390,94089254,94006891,84333343,91399009,76362780,81019750,88459136,97447595,106848015,102616223,107602529,112910958,111353092,Swedish
+,,,,,,,,English Wk,41643099,39325415,47385259,40016478,35015855,38337590,37551229,38427292,40633351,36862178,38472628,39715126,42456596,46916363,49424479,52257666,50897260,49096160,58026043,50904638,46998278,48620128,51460830,56317081,56174176,50420059,54795620,55295670,57161716,56245192,67991615,76724546,71158072,71701998,74336171,84060200,80580560,83164130,82398800,96991469,87101810,73527531,89885317,84326502,English Wk
+,,,,,,,,Czech,26174877,28538609,36906087,38022864,45445656,37395074,49320003,46592439,48401067,40267461,46205191,44978219,36778845,34443095,46396182,52924744,52580697,43815923,54607500,51890087,48582798,57724699,64144880,51522068,41227640,41733465,49527460,55058143,59911039,55333610,71252178,63094693,64646975,62522310,69364850,60563202,52415624,53636976,61588035,74126189,76175219,72896213,88245522,78103220,Czech
+,,,,,,,,Arabic,19228605,20081532,24629796,30623187,36162560,29484293,33786602,35317398,37454906,34788031,30843612,27076903,27161677,28920759,32411697,40232654,39257409,40148645,40244838,39413240,38353331,44761545,42968077,38636062,36261330,35974254,43601195,53707815,55693225,55919348,50422751,57038135,54674238,55642376,53073703,48078814,49713130,57205813,62011456,82258592,77145330,79859983,74271185,80184089,Arabic
+,,,,,,,,Indonesian,18438876,22539597,22489672,24106333,27105617,21035466,25683151,27594564,27073960,24217134,25131333,21800134,23020149,29689277,27150294,37948207,37525821,31559174,37974104,40455268,36827848,46562731,47025082,42551872,48994167,46835216,45228365,57318351,57522493,47842068,56614603,52389969,53266873,48968206,50009273,46321519,48169443,56929313,68624600,77543836,77304709,66774996,73927763,73854081,Indonesian
+,,,,,,,,Finnish,47233877,51430818,56292068,57757759,58444812,55320279,64223457,61331024,62117650,55148718,55800332,47707338,48061441,52492234,55879477,56036968,57310141,51155128,57126145,57340528,52079197,61645394,62030353,56216708,56120049,59183253,64539165,63106234,65532698,62164661,69410959,64525292,67408530,62940801,64300804,56962700,58249897,67043016,67420624,69054732,64559263,63513725,67778525,65315132,Finnish
+,,,,,,,,Korean,17482910,16690947,18425486,18904608,18817507,18080130,24014745,29280901,22401152,24032232,23589786,23733535,24500386,27471539,28920299,31295152,31809959,27769992,27754121,26190119,28413635,34062424,34542655,33300612,47777782,41425942,36396881,36932000,38683383,39789562,42079189,44363143,49003756,49540840,46917671,41971386,41353025,48032634,54092560,60043761,61557839,65654826,67009174,67402745,Korean
+,,,,,,,,Thai,25669525,24468787,23708313,16695502,23473655,21748432,23746893,23955665,17334877,14978560,20381355,30493758,29455065,30955932,29602070,21710186,29187978,26953685,31126263,32798748,26763244,24322523,31170146,39063964,36413905,36590816,37453970,25696678,35975390,33381682,37352095,39009534,28362355,25476870,31351453,42582342,42976418,49737965,51292861,38528875,45516247,45102277,49826444,53447918,Thai
+,,,,,,,,Hebrew,29250576,28764806,30627063,30705191,32720336,32230256,34395481,33916157,31573813,30194297,30555877,30372453,30439952,29753587,30915310,34471361,33417235,32251305,33018642,34310073,28508141,36560557,36046103,34543712,33609666,31341063,33910227,36922029,37632416,37722887,41675570,41129272,38074186,39723486,43564233,42663590,41766467,46706041,46755702,51975580,51922297,52629460,54877873,55052820,Hebrew
+,,,,,,,,Norwegian,18686854,25998346,32269707,33429293,35102168,30970704,34994415,34312611,36788650,28941155,30590312,27549759,20817765,24922183,32045827,35098070,34391855,28342657,33990890,36856306,31416904,38893798,41962013,34794133,30189334,31923763,40603118,38873558,39987207,37495457,44529850,43119670,45121418,42780673,46181417,40592807,37897338,43197102,46391140,48190465,45930969,42636648,47062757,48094591,Norwegian
+,,,,,,,,Hungarian,20292202,19741722,24972629,26883852,28453647,26446667,33762583,29762149,31606103,29329841,31917828,28966266,25959652,27609728,32933066,37134586,37319923,33087494,38011279,38493008,33160150,38317264,41302909,39638395,36677573,36119657,42877522,43281504,44589450,41956935,49287242,43554894,44441878,41386122,42814201,40337397,38818975,42020899,44257164,48806853,45559116,44106450,49785783,47133099,Hungarian
+,,,,,,,,English Wq,11215631,10168329,11488489,11862345,11162685,11005923,10804544,11619352,11822174,10130773,11083475,11034597,10547109,11424035,11766914,12420301,11718868,11781761,11666076,21094083,20029804,17037308,13737551,12557196,11159035,12247537,12244160,12943458,14821911,12861167,13158598,14438880,17633019,18567124,20313325,21972330,20965095,20224797,20702189,30216334,29607734,31498787,43347420,44200542,English Wq
+
+=== Page view totals non-mobile ===
+
+,,,,,,,,project,07/2008,08/2008,09/2008,10/2008,11/2008,12/2008,01/2009,02/2009,03/2009,04/2009,05/2009,06/2009,07/2009,08/2009,09/2009,10/2009,11/2009,12/2009,01/2010,02/2010,03/2010,04/2010,05/2010,06/2010,07/2010,08/2010,09/2010,10/2010,11/2010,12/2010,01/2011,02/2011,03/2011,04/2011,05/2011,06/2011,07/2011,08/2011,09/2011,10/2011,11/2011,12/2011,01/2012,02/2012
+,,,,,,,,English,5135131814,4974344046,5479533823,5509405206,5415832055,5043588824,5615498275,5943558064,6092089410,5988817321,6066080834,5818924182,5614497075,5604048759,5937922018,6041279704,5841504417,5258610830,5883232992,6227014896,6446465754,8213623221,8126959544,7693291857,7450284923,7143238703,7263472259,7212376915,7202955037,6801517052,7412654552,7430878240,7119605492,6860227743,6815458875,6601891312,6396427276,6673418872,6926488856,7193811417,7507641641,7005246572,7556590973,7789786698,English
+,,,,,,,,Japanese,973755192,969975425,998032211,974745059,925842966,867622536,1020040333,1015724496,965824332,935725490,1054087578,1076231552,1071919060,1056863842,1036022366,1042122587,1018879252,947765303,1083201946,1060245098,979748084,1152028494,1276258833,1242962714,1247355032,1189054331,1166733972,1153462827,1153308967,1058506203,1164246308,1163817140,1124424884,1099606562,1160003790,1130853611,1139068445,1209440598,1199318651,1179394557,1148438263,1063624623,1213616709,1206771743,Japanese
+,,,,,,,,Spanish,445589582,529752195,640332042,659209518,618951709,429593165,525897906,664767977,708812666,622529405,712546000,689177935,568949734,670114201,805384131,793041104,750257494,500123563,608651538,776934909,740804448,953794373,999782289,935867522,753646238,861507017,1006664747,1008726231,1016264516,734841206,852340802,996788226,1050959385,937204297,1046814722,951695793,829532950,1013301599,1152728152,1183600139,1154582408,837964678,961515746,1132164637,Spanish
+,,,,,,,,German,755196668,778407514,817672904,829895189,1007854264,1434267602,1270923077,981701403,978324435,816911070,875354334,908943732,818710227,812759742,888953956,884514330,903770333,759783399,916028392,890617318,809344045,957331874,986952926,945766482,888170479,921611793,972644014,956340359,1041961420,942028806,1124695974,980747743,972246587,871459914,1003480736,974212324,925407180,930924972,952904172,979810515,1017247857,963287780,1106896546,1063034944,German
+,,,,,,,,Russian,113662290,121195082,157256924,173119199,193302177,225726994,244179932,261464142,284750415,275645537,285393526,287430317,249613491,263291318,305019697,336490934,350558815,342298682,377526978,414429038,358678986,438267171,467543830,449801416,377883747,399427872,483533546,513104029,554964992,569405072,623931881,643174065,630714293,625067144,625642440,604155015,548574092,562711091,641005514,702506996,744511802,757790683,819857427,848887673,Russian
+,,,,,,,,French,311381016,312562951,407994179,426838989,456433510,398506291,489329700,489587152,510839619,513244212,517848086,478907393,402046348,405401461,468445343,517691251,517541264,456708198,532464602,527713863,493544465,550218307,573315069,528255856,469345811,494276218,570598929,582556383,638212095,598043929,671092628,631079514,632066958,597528158,625399566,597632799,564810185,621466104,654834550,709028867,715296489,670004685,732441735,721151677,French
+,,,,,,,,Italian,253142528,226788304,292094070,284785396,295167835,268936529,323865050,331462012,333628746,321232353,325172932,338916224,302151993,281213653,348829233,340393236,335486809,292954921,351946559,362298914,312331661,384760757,406586246,404433446,357247461,350080686,417269731,396434537,424218278,405044270,472796419,470390021,444766349,417150053,435969036,447299288,422381710,419794239,470915118,471412092,462898518,434346031,499490358,495254362,Italian
+,,,,,,,,Polish,234225988,211318513,287289924,301285766,337306352,322567403,378558789,347846184,377900102,308548956,332734072,278123553,236721174,240422472,300273886,308831445,316542276,280035263,330343587,333559188,290930249,375442104,354824282,312744273,274407407,260338926,329545331,335394956,366190094,342238429,397033213,377141076,366091762,363428006,398868004,375065775,297512363,312992687,360020924,423315771,437410034,443150382,475537627,430942318,Polish
+,,,,,,,,Portuguese,191948515,212572828,234763094,224667556,232643623,160738596,174107513,196230523,251252007,226136663,249247379,251823530,204964404,238925366,284662734,264892776,270789097,193279861,204134794,226332964,259419247,323138528,348232821,351882044,282146889,322231720,344993560,324298485,363296559,284056855,291128670,313826764,351956022,343487436,361754955,348293949,301790837,366498256,380812445,381127669,381162470,316562290,315138896,330280617,Portuguese
+,,,,,,,,Commons,147198722,166728211,172745424,163016553,155181903,171606409,203440658,215841091,228669608,206210403,216904520,211603143,194753631,187288078,198318542,269267629,253990187,221185599,242518817,234238776,203288687,203952165,201213335,174934060,172118495,173515273,184470049,192223224,192235579,189503109,198748676,228902671,185372852,170391437,175539199,214802296,225011966,236364195,245113122,257511245,242692726,251262938,274431220,262299702,Commons
+,,,,,,,,Chinese,53599233,54652909,56351275,65176272,63031093,59757307,55920492,58949967,60625596,60425864,66910263,68284748,70063047,74882729,71061187,80834159,76538062,72849396,76239687,75997773,77145897,86612525,54595418,58717530,50468156,47294217,47936443,47285742,50952527,48349865,47872863,79176594,133898744,160277829,156449158,165180410,169434365,183400577,186382304,194007283,195900221,208284435,203272770,225041781,Chinese
+,,,,,,,,Dutch,109482172,112861810,137655804,144666344,149779808,132708796,154382684,147131644,157678285,133250642,142677626,141884963,115720215,117674624,139838402,149322508,148536508,127605068,147926332,144753200,134407073,149989491,161677524,158746652,129768007,135852064,152225436,162442972,160381867,150938662,177964514,167917021,165296136,154047298,171857682,166725575,147780819,158831174,172910517,185833508,182062883,170068160,190336815,186702892,Dutch
+,,,,,,,,Turkish,49187274,48663318,60674010,69733100,73921469,75455574,73635066,78329058,83164574,76806392,71775003,60581767,56749142,56886594,58705956,73961629,66784898,75806789,68505345,67519386,64801318,78186853,76152372,66222642,58895946,58949367,63511487,76022814,74968624,89975476,90767364,93375471,92100695,99048509,90759938,78574012,76040727,85978808,87034435,104084787,101456388,110225993,109752319,109253434,Turkish
+,,,,,,,,Swedish,48499395,55109178,70463628,71814872,75656464,69420845,78175318,79876681,82314658,69032419,72702863,59548555,57888995,65901106,77203081,76680349,74533396,63647306,75306569,80708125,69303570,77890331,85677559,70211770,65838018,71954861,84059050,85677372,84209190,80999647,92143720,89239670,89457045,79427603,86393364,71061900,74761514,82764522,92188961,99818837,93767261,96499129,100621954,99476523,Swedish
+,,,,,,,,English Wk,41643099,39325415,47385259,40016478,35015855,38337590,37551229,38427292,40633351,36862178,38472628,39715126,42456596,46916363,49424479,52257666,50897260,49096160,58026043,50904638,46998278,48620128,51460830,56317081,56174176,50420059,54795620,55295670,57161716,56245192,67991615,76724546,71158072,71701998,74336171,84060200,80580560,83164130,82398800,96991469,87101810,73527531,89885317,84326502,English Wk
+,,,,,,,,Czech,26174877,28538609,36906087,38022864,45445656,37395074,49320003,46592439,48401067,40267461,46205191,44978219,36778845,34443095,46396182,52924744,52580697,43815923,54607500,51890087,48582798,57724699,64144880,51454877,41043265,41521779,49271368,54794417,59610155,55006569,70797060,62624342,64200543,62044035,68824605,60019028,51920472,52959465,60728707,72933428,74697748,71168948,86032527,76180748,Czech
+,,,,,,,,Arabic,19228605,20081532,24629796,30623187,36162560,29484293,33786602,35317398,37454906,34788031,30843612,27076903,27161677,28920759,32411697,40232654,39257409,40148645,40244838,39413240,38353331,44761545,42968077,38477573,35785051,35322982,42859691,52993498,54804493,54852274,49361936,55621905,53302713,53954161,51323455,46109327,47605367,53614961,58495153,77318050,71260857,73001961,67577459,72914815,Arabic
+,,,,,,,,Indonesian,18438876,22539597,22489672,24106333,27105617,21035466,25683151,27594564,27073960,24217134,25131333,21800134,23020149,29689277,27150294,37948207,37525821,31559174,37974104,40455268,36827848,46562731,47025082,41618447,46095740,43677477,41807391,53428426,52880244,43259657,51667627,47462127,48440284,44190270,44948073,40925807,42777525,50437790,61500190,68556888,66807038,55497096,62432908,62418078,Indonesian
+,,,,,,,,Finnish,47233877,51430818,56292068,57757759,58444812,55320279,64223457,61331024,62117650,55148718,55800332,47707338,48061441,52492234,55879477,56036968,57310141,51155128,57126145,57340528,52079197,61645394,62030353,56055984,55730043,58782867,64087918,62613714,64999890,61533086,68658590,63715211,66628192,62117073,63454745,56058100,57181372,65607610,65925018,67161646,62150808,60599330,64693641,62261554,Finnish
+,,,,,,,,Korean,17482910,16690947,18425486,18904608,18817507,18080130,24014745,29280901,22401152,24032232,23589786,23733535,24500386,27471539,28920299,31295152,31809959,27769992,27754121,26190119,28413635,34062424,34542655,32500183,46508324,39944838,34368419,34886644,36048773,37516062,39472011,41082729,45780509,45431073,42003279,36460284,35274379,41945054,48867257,53249678,53669568,56262291,56723861,57611443,Korean
+,,,,,,,,Thai,25669525,24468787,23708313,16695502,23473655,21748432,23746893,23955665,17334877,14978560,20381355,30493758,29455065,30955932,29602070,21710186,29187978,26953685,31126263,32798748,26763244,24322523,31170146,38910780,36165265,36330192,37165318,25419633,35636026,33021729,36926971,38496595,27883727,24928818,30753097,41870423,42154579,48547240,50033100,37107675,43639301,43065326,47531462,50960675,Thai
+,,,,,,,,Hebrew,29250576,28764806,30627063,30705191,32720336,32230256,34395481,33916157,31573813,30194297,30555877,30372453,30439952,29753587,30915310,34471361,33417235,32251305,33018642,34310073,28508141,36560557,36046103,34402533,33147948,30855507,33372646,36330478,36932974,36991831,40820758,40188451,37059157,38268772,41756775,40804028,39838845,44608527,44568610,48975092,48430730,48567804,50464033,50468766,Hebrew
+,,,,,,,,Norwegian,18686854,25998346,32269707,33429293,35102168,30970704,34994415,34312611,36788650,28941155,30590312,27549759,20817765,24922183,32045827,35098070,34391855,28342657,33990890,36856306,31416904,38893798,41962013,34691829,30091851,31845089,40527845,38813984,39944925,37461272,44488441,43080861,44978199,41681714,45016689,39395578,36528717,41895017,45117569,46747601,44082097,40336514,44777105,45873832,Norwegian
+,,,,,,,,Hungarian,20292202,19741722,24972629,26883852,28453647,26446667,33762583,29762149,31606103,29329841,31917828,28966266,25959652,27609728,32933066,37134586,37319923,33087494,38011279,38493008,33160150,38317264,41302909,39554912,36541129,35963588,42689460,43092733,44374746,41719183,48955779,43199870,44093359,41003014,42390538,39880279,38373269,41488831,43637592,48008959,44477691,42734716,48134531,45578941,Hungarian
+,,,,,,,,English Wq,11215631,10168329,11488489,11862345,11162685,11005923,10804544,11619352,11822174,10130773,11083475,11034597,10547109,11424035,11766914,12420301,11718868,11781761,11666076,21094083,20029804,17037308,13737551,12557196,11159035,12247537,12244160,12943458,14821911,12861167,13158598,14438880,17633019,18567124,20313325,21972330,20965095,20224797,20702189,30216334,29607734,31498787,43347420,44200542,English Wq
+
+=== Page view totals mobile ===
+
+,,,,,,,,,,,,,,,,,,,,,,,project,,,,,,,,,,,,,,,,,,,,,,,,06/2010,07/2010,08/2010,09/2010,10/2010,11/2010,12/2010,01/2011,02/2011,03/2011,04/2011,05/2011,06/2011,07/2011,08/2011,09/2011,10/2011,11/2011,12/2011,01/2012,02/2012
+,,,,,,,,,,,,,,,,,,,,,,,English Mobile,,,,,,,,,,,,,,,,,,,,,,,,147977836,278327012,292649435,308748612,314486485,349765196,395806618,473666865,474485604,412602980,485265239,498279380,527599350,571859457,590078181,556519235,687274491,806976298,944881712,1019997286,992947277,English Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Japanese Mobile,,,,,,,,,,,,,,,,,,,,,,,,17809786,28394287,33072856,33404730,31851931,39647998,46486873,66024071,71955380,71516492,85519986,95856745,96806760,108449709,112019176,114917611,143102045,172878247,189591286,225008795,224398907,Japanese Mobile
+,,,,,,,,,,,,,,,,,,,,,,,German Mobile,,,,,,,,,,,,,,,,,,,,,,,,9369170,13668968,15319698,17164171,17408353,20769311,23444459,31057975,29621900,28302165,30645173,32195180,35067206,34129202,36010958,35136885,48769995,62186820,74903496,85592570,81796107,German Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Spanish Mobile,,,,,,,,,,,,,,,,,,,,,,,,4122690,8950452,10564184,11807268,11501680,12813399,13279423,18224248,20710352,20540505,24255944,27317424,27744011,29321690,40792718,42295306,51284025,60289133,61279596,73497001,79554420,Spanish Mobile
+,,,,,,,,,,,,,,,,,,,,,,,French Mobile,,,,,,,,,,,,,,,,,,,,,,,,8195299,12875048,15812894,16291336,16066117,19150519,21042051,26031268,26531476,24355948,26588526,27715065,28634979,28213198,32550585,27847084,36238792,45299992,53304120,58556530,59454754,French Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Russian Mobile,,,,,,,,,,,,,,,,,,,,,,,,7097283,8148804,8615441,10535929,12408818,14981251,17847127,19734794,19955837,19228891,21478879,21891242,22097952,19454859,23320682,26131473,37921767,44936278,52460396,52199562,54868457,Russian Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Italian Mobile,,,,,,,,,,,,,,,,,,,,,,,,3601673,4880655,6215748,6215555,5892838,7228372,8102866,11105273,12048628,10731203,11291385,12324058,13099252,13441276,17595039,16013630,19378412,25354308,33028388,36746917,37217358,Italian Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Portuguese Mobile,,,,,,,,,,,,,,,,,,,,,,,,887967,1205691,1409290,1801693,1913891,2423398,2442815,2994069,3386252,3301939,3924143,4535597,4951522,5037866,8340164,9699445,11718208,13746171,13276874,13811145,14703260,Portuguese Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Chinese Mobile,,,,,,,,,,,,,,,,,,,,,,,,1218327,1085997,1158908,1205950,1754842,2614463,3168535,3377325,3579692,3762380,3752439,3874448,4185473,4041403,5277212,5013199,6434834,7863283,9408373,10240920,13279923,Chinese Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Dutch Mobile,,,,,,,,,,,,,,,,,,,,,,,,2162135,2432925,2888596,3096313,3326859,3704952,4487399,5259914,5775433,5017814,5444084,6017644,6488879,6490933,7115632,6298472,8097568,9982246,12338744,13737791,12339918,Dutch Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Swedish Mobile,,,,,,,,,,,,,,,,,,,,,,,,936293,2287219,2432856,2579722,2760331,3054648,3737790,4659670,4849584,4549846,4905740,5005645,5300880,6258236,5694614,5258634,7029178,8848962,11103400,12289004,11876569,Swedish Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Indonesian Mobile,,,,,,,,,,,,,,,,,,,,,,,,933425,2898427,3157739,3420974,3889925,4642249,4582411,4946976,4927842,4826589,4777936,5061200,5395712,5391918,6491523,7124410,8986948,10497671,11277900,11494855,11436003,Indonesian Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Korean Mobile,,,,,,,,,,,,,,,,,,,,,,,,800429,1269458,1481104,2028462,2045356,2634610,2273500,2607178,3280414,3223247,4109767,4914392,5511102,6078646,6087580,5225303,6794083,7888271,9392535,10285313,9791302,Korean Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Polish Mobile,,,,,,,,,,,,,,,,,,,,,,,,804079,1164542,1240679,1478658,1646108,2044809,2164922,2761159,2904666,2944417,3028605,3235344,3155652,3126447,3737773,4053589,5626443,7598613,9313021,9923170,9613112,Polish Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Arabic Mobile,,,,,,,,,,,,,,,,,,,,,,,,158489,476279,651272,741504,714317,888732,1067074,1060815,1416230,1371525,1688215,1750248,1969487,2107763,3590852,3516303,4940542,5884473,6858022,6693726,7269274,Arabic Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Turkish Mobile,,,,,,,,,,,,,,,,,,,,,,,,302027,407817,470190,511748,544970,777059,880929,1363892,736915,169070,1048606,1250837,1317384,1413461,2444946,2194249,2933765,4222655,4949512,5231010,5617156,Turkish Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Vietnamese Mobile,,,,,,,,,,,,,,,,,,,,,,,,265192,741628,904640,1015719,1158829,1300346,1285122,1272249,1544879,1433828,1677735,1683642,1844483,1737997,2559883,2823878,3532421,3844960,4290201,3591142,4638486,Vietnamese Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Hebrew Mobile,,,,,,,,,,,,,,,,,,,,,,,,141179,461718,485556,537581,591551,699442,731056,854812,940821,1015029,1454714,1807458,1859562,1927622,2097514,2187092,3000488,3491567,4061656,4413840,4584054,Hebrew Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Finnish Mobile,,,,,,,,,,,,,,,,,,,,,,,,160724,390006,400386,451247,492520,532808,631575,752369,810081,780338,823728,846059,904600,1068525,1435406,1495606,1893086,2408455,2914395,3084884,3053578,Finnish Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Ukrainian Mobile,,,,,,,,,,,,,,,,,,,,,,,,18237,27789,18965,20554,11732,5588,2035,2532,3208,95389,816340,1113678,933039,413701,418318,1272815,2255935,3019524,4106149,2127859,2693886,Ukrainian Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Thai Mobile,,,,,,,,,,,,,,,,,,,,,,,,153184,248640,260624,288652,277045,339364,359953,425124,512939,478628,548052,598356,711919,821839,1190725,1259761,1421200,1876946,2036951,2294982,2487243,Thai Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Danish Mobile,,,,,,,,,,,,,,,,,,,,,,,,173525,476250,541417,702776,689705,725427,892927,1085136,1147546,1044984,1085107,1111114,1168032,1195712,1240886,1220146,1588429,1888665,2688865,2679588,2474753,Danish Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Norwegian Mobile,,,,,,,,,,,,,,,,,,,,,,,,102304,97483,78674,75273,59574,42282,34185,41409,38809,143219,1098959,1164728,1197229,1368621,1302085,1273571,1442864,1848872,2300134,2285652,2220759,Norwegian Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Czech Mobile,,,,,,,,,,,,,,,,,,,,,,,,67191,184375,211686,256092,263726,300884,327041,455118,470351,446432,478275,540245,544174,495152,677511,859328,1192761,1477471,1727265,2212995,1922472,Czech Mobile
+,,,,,,,,,,,,,,,,,,,,,,,Hungarian Mobile,,,,,,,,,,,,,,,,,,,,,,,,83483,136444,156069,188062,188771,214704,237752,331463,355024,348519,383108,423663,457118,445706,532068,619572,797894,1081425,1371734,1651252,1554158,Hungarian Mobile
+
+=== Page view totals per project - non-mobile + mobile ===
+
+,,,,,,,,project,07/2008,08/2008,09/2008,10/2008,11/2008,12/2008,01/2009,02/2009,03/2009,04/2009,05/2009,06/2009,07/2009,08/2009,09/2009,10/2009,11/2009,12/2009,01/2010,02/2010,03/2010,04/2010,05/2010,06/2010,07/2010,08/2010,09/2010,10/2010,11/2010,12/2010,01/2011,02/2011,03/2011,04/2011,05/2011,06/2011,07/2011,08/2011,09/2011,10/2011,11/2011,12/2011,01/2012,02/2012
+,,,,,,,,All projects,9548996210,9501001454,10631663954,10745804046,10845469092,10471563468,11496646304,11679535423,12024861825,11352618238,11825871683,11511697454,10765972893,10938211645,11878057285,12257818838,12008717929,10626615834,11987313136,12516729210,12202521201,15032437998,15224406159,14593246215,13895951881,13761404385,14528727375,14532379947,14938669730,13948550781,15494530891,15602268516,15206260062,14675653788,15136657840,14722782480,14140708611,15061061562,15837394590,17102054445,17422227530,16365307171,18054255760,18127912107,All projects
+,,,,,,,,Wikipedia,9136168983,9087895401,10185588655,10311576636,10462708952,10062538523,11054621401,11230160749,11542436432,10922457895,11366412695,11052879873,10328330824,10482812605,11385107278,11644240164,11410668035,10065987261,11417234339,11967474718,11734603829,14553881257,14741987719,14170347061,13499947558,13371386532,14100865308,14089396496,14474025282,13495384238,15002687171,15057703563,14727782945,14218152762,14654135774,14186335371,13593932405,14508813393,15186187788,16091695912,16588004814,15705257646,17090632383,17435702131,Wikipedia
+,,,,,,,,Wiktionary,146280022,132428811,151406319,142185982,110643063,123839287,122825140,114792578,125641734,108937339,119754992,122375294,123131078,134595437,146518403,171356483,171909694,173146557,174841899,158195213,129726375,135352341,146915343,133239361,122902814,113563200,129213176,132178844,141676188,142214595,164516305,177164473,158569909,154054318,169374413,178523121,178941092,177196741,256834257,569006707,402218778,223659548,494991106,220363395,Wiktionary
+,,,,,,,,Commons,147198722,166728211,172745424,163016553,155181903,171606409,203440658,215841091,228669608,206210403,216904520,211603143,194753631,187288078,198318542,269267629,253990187,221185599,242518817,234238776,203288687,203952165,201213335,174934060,172118495,173515273,184470049,192223224,192235579,189503109,198748676,228902671,185372852,170391437,175539199,214802296,225011966,236364195,245113122,257511245,242692726,251262938,274431220,262299702,Commons
+,,,,,,,,Wikiquote,33416903,31906780,33470223,35505471,31933507,30659889,31165209,33267088,35737343,33629876,36983313,36298425,38883493,39040479,40218086,39690586,44784647,40023336,39101615,47934663,40886090,43136370,40735562,33968324,29570350,34526955,34882585,34746957,39807952,36195565,39789757,42052384,44370387,50405372,52172749,56201394,55670214,53243574,58314348,71313454,77357702,82113521,85987949,99126768,Wikiquote
+,,,,,,,,Wikisource,32299220,30370334,34081924,37233631,31586509,33484484,32769965,31851014,36474283,33101030,34736785,33918396,30986097,36970654,42131018,56153482,55604279,58528070,50718057,45587034,39770456,37320372,36541551,31607787,26138231,25130424,30546835,33949660,37543303,36181261,37480021,40993097,36937798,32529050,34387124,35022814,36794933,32610598,36092180,44615120,49575366,44328529,46087929,46118719,Wikisource
+,,,,,,,,Wikibooks,34926290,33806180,35632091,36539465,33852796,29715090,32219553,32964865,34682795,29657692,31543489,33127546,30007722,33097900,38155115,42701489,40590285,36960247,36048482,36704853,33291514,37579677,36758786,31392174,27653741,27438003,31552942,32199830,35165858,30135879,31659086,34203200,32915766,30709836,32865974,32648377,29798014,31816143,35426523,43036132,40801466,38002439,40508138,42905985,Wikibooks
+,,,,,,,,Wikinews,12637997,11872431,11976202,12651880,12657205,12637593,12607096,12971875,13682712,12102127,12371892,14021881,12962902,15177837,17296530,21205334,18730737,18997153,17041569,16325595,13143963,13808908,13061093,11408399,11415099,10033317,10370801,10572019,10929603,11904574,12281246,13313558,12700317,12501283,11296006,11919964,13301413,13695087,11827259,15989848,13195136,13274655,13436527,13564528,Wikinews
+,,,,,,,,Wikiversity,6068073,5993306,6763116,7094428,6905157,7082193,6997282,7686163,7536918,6521876,7163997,7472896,6917146,9228655,10312313,13203671,12440065,11787611,9808358,10268358,7810287,7406908,7192770,6349049,6205593,5810681,6825679,7112917,7285965,7031560,7368629,7935570,7610088,6909730,6886601,7329143,7258574,7321831,7599113,8886027,8381542,7407895,8180508,7830879,Wikiversity
diff --git a/msc/old_rc_new/input/StatisticsMonthly_2012_02.csv b/msc/old_rc_new/input/StatisticsMonthly_2012_02.csv
new file mode 100755 (executable)
index 0000000..5f1c917
--- /dev/null
@@ -0,0 +1,547 @@
+,New editors - Absolute - Per Wiki,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,project,Feb-09,Mar-09,Apr-09,May-09,Jun-09,Jul-09,Aug-09,Sep-09,Oct-09,Nov-09,Dec-09,Jan-10,Feb-10,Mar-10,Apr-10,May-10,Jun-10,Jul-10,Aug-10,Sep-10,Oct-10,Nov-10,Dec-10,Jan-11,Feb-11,Mar-11,Apr-11,May-11,Jun-11,Jul-11,Aug-11,Sep-11,Oct-11,Nov-11,Dec-11,Jan-12,Feb-12,%inc year, %inc month
+,Total,20827,22290,20561,21535,20755,21028,20627,19165,20413,19999,19305,21420,19665,21238,19878,20502,18325,17931,18383,17045,17721,17370,17514,20274,18881,19981,18404,18450,18200,17925,18352,18185,17526,17725,17200,18219,16586,-12.20%,-9.00%
+1,English,9508,10056,9301,9602,9130,9402,9009,8487,9087,8711,8193,8842,8510,9158,8769,8762,7698,7734,7996,7282,7583,7353,7315,8179,8172,8849,8450,8000,7823,7701,7682,7107,7348,7191,6850,6712,6256,-23.40%,-6.80%
+2,Commons,860,984,915,979,921,953,1062,954,950,932,927,961,841,926,898,878,853,947,1005,933,868,810,796,980,901,990,958,966,996,1043,1147,2465,1216,1167,1157,1410,1253,39.10%,-11.10%
+3,Spanish,952,976,975,1052,1025,1100,1094,946,1078,992,968,1118,939,943,899,1026,831,897,904,873,866,865,871,985,846,932,842,861,877,944,937,900,886,859,927,980,901,6.50%,-8.10%
+4,French,931,922,885,1099,1023,975,912,860,1018,962,903,1052,918,1040,931,957,923,897,922,821,910,837,816,950,858,967,885,913,839,885,946,852,840,876,806,965,879,2.40%,-8.90%
+5,German,1289,1387,1062,1156,1074,1145,1138,1088,1131,1136,1069,1331,1144,1184,1110,1240,1022,1129,1059,980,975,939,953,1362,1141,1158,950,952,947,955,964,840,854,884,807,957,863,-24.40%,-9.80%
+6,Russian,824,993,893,884,1004,909,957,844,970,979,961,1131,1037,1127,974,1041,949,821,811,750,835,896,816,1070,889,906,873,830,770,780,775,679,697,745,757,897,745,-16.20%,-16.90%
+7,Japanese,756,869,820,869,840,767,813,755,763,651,719,832,723,872,739,785,653,643,727,715,738,663,792,805,711,676,608,675,608,622,752,662,682,679,592,732,682,-4.10%,-6.80%
+8,Italian,578,618,548,552,626,593,563,568,478,493,530,585,574,560,510,612,562,508,564,533,483,463,493,679,549,548,534,545,572,576,524,537,447,435,504,632,593,8.00%,-6.20%
+9,Chinese,322,393,366,353,373,428,408,283,335,281,310,384,345,352,397,313,341,332,293,247,239,256,257,284,308,268,275,277,263,331,358,287,298,276,268,322,361,17.20%,12.10%
+10,Portuguese,378,416,408,425,406,476,448,425,397,387,427,432,414,434,431,405,357,418,356,357,335,324,396,403,378,322,305,316,338,340,310,282,253,272,315,316,285,-24.60%,-9.80%
+11,Dutch,281,274,229,270,261,247,277,274,272,270,292,314,242,321,261,307,251,246,270,227,247,223,231,287,254,271,254,276,284,268,282,221,218,233,235,238,199,-21.70%,-16.40%
+12,Polish,363,355,329,314,339,380,341,278,286,294,320,321,304,286,296,269,225,251,231,205,204,208,215,280,263,255,193,207,204,238,216,175,204,161,178,214,175,-33.50%,-18.20%
+13,Persian,86,86,104,124,82,124,150,121,85,117,123,134,102,136,118,162,117,94,134,162,152,121,144,152,131,143,122,100,160,168,168,133,117,155,188,241,163,24.40%,-32.40%
+14,Ukrainian,83,93,88,86,120,90,86,95,96,107,92,147,126,185,153,154,119,102,118,103,139,119,130,183,153,184,139,151,123,127,126,111,140,176,156,155,153,0.00%,-1.30%
+15,Arabic,139,157,122,144,132,153,167,212,147,153,172,143,132,146,151,149,123,155,155,142,142,144,127,125,129,128,111,125,140,165,167,183,212,170,167,173,149,15.50%,-13.90%
+16,Korean,144,163,143,195,222,165,210,166,216,207,182,195,183,159,179,208,242,147,134,109,150,154,171,195,169,123,131,220,159,164,161,171,214,187,207,199,147,-13.00%,-26.10%
+17,Meta-Wiki,166,45,52,50,33,86,48,41,47,58,44,128,151,49,41,59,35,35,38,55,81,74,52,58,113,43,36,60,46,31,79,97,89,73,44,45,139,23.00%,208.90%
+18,Hebrew,119,118,137,129,148,122,138,89,125,111,93,121,106,97,101,117,127,113,120,115,94,97,92,100,120,120,124,118,130,152,173,107,111,96,113,119,135,12.50%,13.40%
+19,Czech,139,124,127,124,133,132,102,115,118,120,121,193,151,171,143,151,129,105,96,103,116,116,104,205,150,210,156,124,121,128,125,95,136,113,139,150,119,-20.70%,-20.70%
+20,Turkish,174,163,197,194,244,232,189,179,151,166,135,169,140,144,129,144,161,141,150,112,138,100,173,152,133,127,121,119,128,114,129,109,85,92,107,98,116,-12.80%,18.40%
+21,Hungarian,164,182,136,158,180,164,173,130,136,146,168,168,171,152,140,151,128,104,133,112,95,109,112,149,117,121,101,106,117,112,119,91,90,103,90,107,111,-5.10%,3.70%
+22,Swedish,200,209,212,215,192,163,185,193,215,234,179,231,184,219,179,212,153,170,157,153,170,147,154,203,191,164,150,157,126,138,154,141,145,146,142,139,110,-42.40%,-20.90%
+23,Romanian,103,102,91,99,112,119,90,95,77,89,113,116,95,136,84,114,148,89,80,85,87,93,84,121,84,89,82,79,95,94,85,59,77,74,106,116,93,10.70%,-19.80%
+24,Norwegian,161,210,143,182,147,147,155,145,167,197,134,175,158,170,181,164,115,111,122,113,144,140,114,153,135,149,144,143,121,92,118,101,120,103,94,120,93,-31.10%,-22.50%
+25,Bulgarian,47,45,66,53,53,55,54,52,46,60,54,95,45,60,59,54,47,50,54,35,44,48,63,74,69,43,35,46,57,53,50,51,46,49,69,71,91,31.90%,28.20%
+,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,New editors - Absolute - Per Project,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,Note: All projects does not include Commons,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,project,Feb-09,Mar-09,Apr-09,May-09,Jun-09,Jul-09,Aug-09,Sep-09,Oct-09,Nov-09,Dec-09,Jan-10,Feb-10,Mar-10,Apr-10,May-10,Jun-10,Jul-10,Aug-10,Sep-10,Oct-10,Nov-10,Dec-10,Jan-11,Feb-11,Mar-11,Apr-11,May-11,Jun-11,Jul-11,Aug-11,Sep-11,Oct-11,Nov-11,Dec-11,Jan-12,Feb-12,%inc year, %inc month
+,All projects,19967,21306,19646,20556,19834,20075,19565,18211,19463,19067,18378,20459,18824,20312,18980,19624,17472,16984,17378,16112,16853,16560,16718,19294,17980,18991,17446,17484,17204,16882,17205,15720,16310,16558,16043,16809,15333,-14.70%,-8.80%
+,Wikipedia,18952,20316,18810,19741,19127,19412,18867,17535,18749,18277,17632,19678,18022,19549,18280,18870,16823,16416,16753,15509,16181,15736,16010,18572,17272,18295,16829,16880,16563,16375,16578,15046,15542,15731,15338,16131,14643,-15.20%,-9.20%
+,Commons,860,984,915,979,921,953,1062,954,950,932,927,961,841,926,898,878,853,947,1005,933,868,810,796,980,901,990,958,966,996,1043,1147,2465,1216,1167,1157,1410,1253,39.10%,-11.10%
+,Other Wikis,195,96,80,89,63,130,138,139,99,125,88,164,187,84,67,88,72,76,87,79,114,110,92,108,146,111,75,105,89,68,124,158,144,118,95,106,183,25.30%,72.60%
+,Wiktionary,221,195,212,184,154,139,156,164,169,156,158,152,190,169,154,179,141,157,173,126,135,191,141,142,150,131,150,141,129,132,163,148,160,139,148,117,134,-10.70%,14.50%
+,Wikibooks,357,379,222,179,206,132,117,120,178,224,244,162,162,242,210,141,142,106,90,104,147,226,227,142,132,153,148,98,126,79,113,86,189,228,206,100,99,-25.00%,-1.00%
+,Wikiquote,98,138,99,120,99,121,110,91,98,133,95,102,87,93,97,116,90,93,97,115,97,87,107,126,86,109,78,84,69,73,75,107,85,98,91,135,91,5.80%,-32.60%
+,Wikiversity,39,65,100,69,37,30,39,59,41,57,57,56,65,60,51,59,47,31,38,78,76,124,48,63,101,73,75,59,64,48,36,90,86,152,58,101,83,-17.80%,-17.80%
+,Wikisource,82,83,90,134,103,81,100,76,102,63,79,100,80,89,90,136,117,67,94,71,75,59,64,114,63,79,63,95,153,87,79,72,67,73,74,87,76,20.60%,-12.60%
+,Wikinews,23,34,33,40,45,30,38,27,27,32,25,45,31,26,31,35,40,38,46,30,28,27,29,27,30,40,28,22,11,20,37,13,37,19,33,32,24,-20.00%,-25.00%
+,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,New editors - Indexed - Per Wiki,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,project,Feb-09,Mar-09,Apr-09,May-09,Jun-09,Jul-09,Aug-09,Sep-09,Oct-09,Nov-09,Dec-09,Jan-10,Feb-10,Mar-10,Apr-10,May-10,Jun-10,Jul-10,Aug-10,Sep-10,Oct-10,Nov-10,Dec-10,Jan-11,Feb-11,Mar-11,Apr-11,May-11,Jun-11,Jul-11,Aug-11,Sep-11,Oct-11,Nov-11,Dec-11,Jan-12,Feb-12,,
+1,English,100,105.8,97.8,101,96,98.9,94.8,89.3,95.6,91.6,86.2,93,89.5,96.3,92.2,92.2,81,81.3,84.1,76.6,79.8,77.3,76.9,86,85.9,93.1,88.9,84.1,82.3,81,80.8,74.7,77.3,75.6,72,70.6,65.8,,
+2,Commons,100,114.4,106.4,113.8,107.1,110.8,123.5,110.9,110.5,108.4,107.8,111.7,97.8,107.7,104.4,102.1,99.2,110.1,116.9,108.5,100.9,94.2,92.6,114,104.8,115.1,111.4,112.3,115.8,121.3,133.4,286.6,141.4,135.7,134.5,164,145.7,,
+3,Spanish,100,102.5,102.4,110.5,107.7,115.5,114.9,99.4,113.2,104.2,101.7,117.4,98.6,99.1,94.4,107.8,87.3,94.2,95,91.7,91,90.9,91.5,103.5,88.9,97.9,88.4,90.4,92.1,99.2,98.4,94.5,93.1,90.2,97.4,102.9,94.6,,
+4,French,100,99,95.1,118,109.9,104.7,98,92.4,109.3,103.3,97,113,98.6,111.7,100,102.8,99.1,96.3,99,88.2,97.7,89.9,87.6,102,92.2,103.9,95.1,98.1,90.1,95.1,101.6,91.5,90.2,94.1,86.6,103.7,94.4,,
+5,German,100,107.6,82.4,89.7,83.3,88.8,88.3,84.4,87.7,88.1,82.9,103.3,88.8,91.9,86.1,96.2,79.3,87.6,82.2,76,75.6,72.8,73.9,105.7,88.5,89.8,73.7,73.9,73.5,74.1,74.8,65.2,66.3,68.6,62.6,74.2,67,,
+6,Russian,100,120.5,108.4,107.3,121.8,110.3,116.1,102.4,117.7,118.8,116.6,137.3,125.8,136.8,118.2,126.3,115.2,99.6,98.4,91,101.3,108.7,99,129.9,107.9,110,105.9,100.7,93.4,94.7,94.1,82.4,84.6,90.4,91.9,108.9,90.4,,
+7,Japanese,100,114.9,108.5,114.9,111.1,101.5,107.5,99.9,100.9,86.1,95.1,110.1,95.6,115.3,97.8,103.8,86.4,85.1,96.2,94.6,97.6,87.7,104.8,106.5,94,89.4,80.4,89.3,80.4,82.3,99.5,87.6,90.2,89.8,78.3,96.8,90.2,,
+8,Italian,100,106.9,94.8,95.5,108.3,102.6,97.4,98.3,82.7,85.3,91.7,101.2,99.3,96.9,88.2,105.9,97.2,87.9,97.6,92.2,83.6,80.1,85.3,117.5,95,94.8,92.4,94.3,99,99.7,90.7,92.9,77.3,75.3,87.2,109.3,102.6,,
+9,Chinese,100,122,113.7,109.6,115.8,132.9,126.7,87.9,104,87.3,96.3,119.3,107.1,109.3,123.3,97.2,105.9,103.1,91,76.7,74.2,79.5,79.8,88.2,95.7,83.2,85.4,86,81.7,102.8,111.2,89.1,92.5,85.7,83.2,100,112.1,,
+,Total,110.3,118.1,108.9,114.1,109.9,111.4,109.2,101.5,108.1,105.9,102.2,113.4,104.2,112.5,105.3,108.6,97.1,95,97.4,90.3,93.9,92,92.8,107.4,100,105.8,97.5,97.7,96.4,94.9,97.2,96.3,92.8,93.9,91.1,96.5,87.8,,(sorted here to make it top-most line out of 10 in Excel)
+10,Portuguese,100,110.1,107.9,112.4,107.4,125.9,118.5,112.4,105,102.4,113,114.3,109.5,114.8,114,107.1,94.4,110.6,94.2,94.4,88.6,85.7,104.8,106.6,100,85.2,80.7,83.6,89.4,89.9,82,74.6,66.9,72,83.3,83.6,75.4,,
+11,Dutch,100,97.5,81.5,96.1,92.9,87.9,98.6,97.5,96.8,96.1,103.9,111.7,86.1,114.2,92.9,109.3,89.3,87.5,96.1,80.8,87.9,79.4,82.2,102.1,90.4,96.4,90.4,98.2,101.1,95.4,100.4,78.6,77.6,82.9,83.6,84.7,70.8,,
+12,Polish,100,97.8,90.6,86.5,93.4,104.7,93.9,76.6,78.8,81,88.2,88.4,83.7,78.8,81.5,74.1,62,69.1,63.6,56.5,56.2,57.3,59.2,77.1,72.5,70.2,53.2,57,56.2,65.6,59.5,48.2,56.2,44.4,49,59,48.2,,
+13,Persian,100,100,120.9,144.2,95.3,144.2,174.4,140.7,98.8,136,143,155.8,118.6,158.1,137.2,188.4,136,109.3,155.8,188.4,176.7,140.7,167.4,176.7,152.3,166.3,141.9,116.3,186,195.3,195.3,154.7,136,180.2,218.6,280.2,189.5,,
+14,Ukrainian,100,112,106,103.6,144.6,108.4,103.6,114.5,115.7,128.9,110.8,177.1,151.8,222.9,184.3,185.5,143.4,122.9,142.2,124.1,167.5,143.4,156.6,220.5,184.3,221.7,167.5,181.9,148.2,153,151.8,133.7,168.7,212,188,186.7,184.3,,
+15,Arabic,100,112.9,87.8,103.6,95,110.1,120.1,152.5,105.8,110.1,123.7,102.9,95,105,108.6,107.2,88.5,111.5,111.5,102.2,102.2,103.6,91.4,89.9,92.8,92.1,79.9,89.9,100.7,118.7,120.1,131.7,152.5,122.3,120.1,124.5,107.2,,
+16,Korean,100,113.2,99.3,135.4,154.2,114.6,145.8,115.3,150,143.8,126.4,135.4,127.1,110.4,124.3,144.4,168.1,102.1,93.1,75.7,104.2,106.9,118.8,135.4,117.4,85.4,91,152.8,110.4,113.9,111.8,118.8,148.6,129.9,143.8,138.2,102.1,,
+17,Meta-Wiki,100,27.1,31.3,30.1,19.9,51.8,28.9,24.7,28.3,34.9,26.5,77.1,91,29.5,24.7,35.5,21.1,21.1,22.9,33.1,48.8,44.6,31.3,34.9,68.1,25.9,21.7,36.1,27.7,18.7,47.6,58.4,53.6,44,26.5,27.1,83.7,,
+18,Hebrew,100,99.2,115.1,108.4,124.4,102.5,116,74.8,105,93.3,78.2,101.7,89.1,81.5,84.9,98.3,106.7,95,100.8,96.6,79,81.5,77.3,84,100.8,100.8,104.2,99.2,109.2,127.7,145.4,89.9,93.3,80.7,95,100,113.4,,
+19,Czech,100,89.2,91.4,89.2,95.7,95,73.4,82.7,84.9,86.3,87.1,138.8,108.6,123,102.9,108.6,92.8,75.5,69.1,74.1,83.5,83.5,74.8,147.5,107.9,151.1,112.2,89.2,87.1,92.1,89.9,68.3,97.8,81.3,100,107.9,85.6,,
+20,Turkish,100,93.7,113.2,111.5,140.2,133.3,108.6,102.9,86.8,95.4,77.6,97.1,80.5,82.8,74.1,82.8,92.5,81,86.2,64.4,79.3,57.5,99.4,87.4,76.4,73,69.5,68.4,73.6,65.5,74.1,62.6,48.9,52.9,61.5,56.3,66.7,,
+21,Hungarian,100,111,82.9,96.3,109.8,100,105.5,79.3,82.9,89,102.4,102.4,104.3,92.7,85.4,92.1,78,63.4,81.1,68.3,57.9,66.5,68.3,90.9,71.3,73.8,61.6,64.6,71.3,68.3,72.6,55.5,54.9,62.8,54.9,65.2,67.7,,
+22,Swedish,100,104.5,106,107.5,96,81.5,92.5,96.5,107.5,117,89.5,115.5,92,109.5,89.5,106,76.5,85,78.5,76.5,85,73.5,77,101.5,95.5,82,75,78.5,63,69,77,70.5,72.5,73,71,69.5,55,,
+23,Romanian,100,99,88.3,96.1,108.7,115.5,87.4,92.2,74.8,86.4,109.7,112.6,92.2,132,81.6,110.7,143.7,86.4,77.7,82.5,84.5,90.3,81.6,117.5,81.6,86.4,79.6,76.7,92.2,91.3,82.5,57.3,74.8,71.8,102.9,112.6,90.3,,
+24,Norwegian,100,130.4,88.8,113,91.3,91.3,96.3,90.1,103.7,122.4,83.2,108.7,98.1,105.6,112.4,101.9,71.4,68.9,75.8,70.2,89.4,87,70.8,95,83.9,92.5,89.4,88.8,75.2,57.1,73.3,62.7,74.5,64,58.4,74.5,57.8,,
+25,Bulgarian,100,95.7,140.4,112.8,112.8,117,114.9,110.6,97.9,127.7,114.9,202.1,95.7,127.7,125.5,114.9,100,106.4,114.9,74.5,93.6,102.1,134,157.4,146.8,91.5,74.5,97.9,121.3,112.8,106.4,108.5,97.9,104.3,146.8,151.1,193.6,,
+,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,New editors - Indexed - Per Project,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,project,Feb-09,Mar-09,Apr-09,May-09,Jun-09,Jul-09,Aug-09,Sep-09,Oct-09,Nov-09,Dec-09,Jan-10,Feb-10,Mar-10,Apr-10,May-10,Jun-10,Jul-10,Aug-10,Sep-10,Oct-10,Nov-10,Dec-10,Jan-11,Feb-11,Mar-11,Apr-11,May-11,Jun-11,Jul-11,Aug-11,Sep-11,Oct-11,Nov-11,Dec-11,Jan-12,Feb-12,%inc year, %inc month
+,All projects,100,106.7,98.4,102.9,99.3,100.5,98,91.2,97.5,95.5,92,102.5,94.3,101.7,95.1,98.3,87.5,85.1,87,80.7,84.4,82.9,83.7,96.6,90,95.1,87.4,87.6,86.2,84.5,86.2,78.7,81.7,82.9,80.3,84.2,76.8,,
+,Wikipedia,100,107.2,99.3,104.2,100.9,102.4,99.6,92.5,98.9,96.4,93,103.8,95.1,103.2,96.5,99.6,88.8,86.6,88.4,81.8,85.4,83,84.5,98,91.1,96.5,88.8,89.1,87.4,86.4,87.5,79.4,82,83,80.9,85.1,77.3,,
+,Commons,100,114.4,106.4,113.8,107.1,110.8,123.5,110.9,110.5,108.4,107.8,111.7,97.8,107.7,104.4,102.1,99.2,110.1,116.9,108.5,100.9,94.2,92.6,114,104.8,115.1,111.4,112.3,115.8,121.3,133.4,286.6,141.4,135.7,134.5,164,145.7,,
+,Other Wikis,100,49.2,41,45.6,32.3,66.7,70.8,71.3,50.8,64.1,45.1,84.1,95.9,43.1,34.4,45.1,36.9,39,44.6,40.5,58.5,56.4,47.2,55.4,74.9,56.9,38.5,53.8,45.6,34.9,63.6,81,73.8,60.5,48.7,54.4,93.8,,
+,Wiktionary,100,88.2,95.9,83.3,69.7,62.9,70.6,74.2,76.5,70.6,71.5,68.8,86,76.5,69.7,81,63.8,71,78.3,57,61.1,86.4,63.8,64.3,67.9,59.3,67.9,63.8,58.4,59.7,73.8,67,72.4,62.9,67,52.9,60.6,,
+,Wikibooks,100,106.2,62.2,50.1,57.7,37,32.8,33.6,49.9,62.7,68.3,45.4,45.4,67.8,58.8,39.5,39.8,29.7,25.2,29.1,41.2,63.3,63.6,39.8,37,42.9,41.5,27.5,35.3,22.1,31.7,24.1,52.9,63.9,57.7,28,27.7,,
+,Wikiquote,100,140.8,101,122.4,101,123.5,112.2,92.9,100,135.7,96.9,104.1,88.8,94.9,99,118.4,91.8,94.9,99,117.3,99,88.8,109.2,128.6,87.8,111.2,79.6,85.7,70.4,74.5,76.5,109.2,86.7,100,92.9,137.8,92.9,,
+,Wikiversity,100,166.7,256.4,176.9,94.9,76.9,100,151.3,105.1,146.2,146.2,143.6,166.7,153.8,130.8,151.3,120.5,79.5,97.4,200,194.9,317.9,123.1,161.5,259,187.2,192.3,151.3,164.1,123.1,92.3,230.8,220.5,389.7,148.7,259,212.8,,
+,Wikisource,100,101.2,109.8,163.4,125.6,98.8,122,92.7,124.4,76.8,96.3,122,97.6,108.5,109.8,165.9,142.7,81.7,114.6,86.6,91.5,72,78,139,76.8,96.3,76.8,115.9,186.6,106.1,96.3,87.8,81.7,89,90.2,106.1,92.7,,
+,Wikinews,100,147.8,143.5,173.9,195.7,130.4,165.2,117.4,117.4,139.1,108.7,195.7,134.8,113,134.8,152.2,173.9,165.2,200,130.4,121.7,117.4,126.1,117.4,130.4,173.9,121.7,95.7,47.8,87,160.9,56.5,160.9,82.6,143.5,139.1,104.3,,
+,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,======================================================================================================================================================,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,Active editors - Absolute - Per Wiki,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
+,project,Feb-09,Mar-09,Apr-09,May-09,Jun-09,Jul-09,Aug-09,Sep-09,Oct-09,Nov-09,Dec-09,Jan-10,Feb-10,Mar-10,Apr-10,May-10,Jun-10,Jul-10,Aug-10,Sep-10,Oct-10,Nov-10,Dec-10,Jan-11,Feb-11,Mar-11,Apr-11,May-11,Jun-11,Jul-11,Aug-11,Sep-11,Oct-11,Nov-11,Dec-11,Jan-12,Feb-12,%inc year, %inc month
+,Total,94649,100007,95345,98037,96531,95881,96342,93114,95443,94726,92691,99300,93705,98570,94971,96938,91210,89328,91261,87814,89282,88422,87370,97634,92538,95341,91061,92183,90853,90938,92304,92133,90793,90146,89969,95838,92407,-0.10%,-3.60%
+1,English,40888,43271,40837,41662,40599,40184,39881,38461,39702,39154,37848,39888,38312,40238,38944,39238,36209,35804,36375,34825,35403,34707,34065,37564,36598,38521,37220,36868,35673,35432,35578,34733,34955,34353,34024,34916,33998,-7.10%,-2.60%
+2,Commons,5043,5496,5643,5738,5678,5749,6068,5817,5921,5545,5402,5749,5331,5894,5779,5780,5648,5768,6222,6037,5762,5615,5429,6176,5889,6139,6093,6152,6391,6634,6990,9396,7137,7039,7028,7522,7244,23.00%,-3.70%
+3,German,7734,8007,7173,7219,7290,7257,7273,6973,7171,7318,7161,8051,7338,7607,7278,7481,7094,7118,7292,6954,7049,6747,6583,8217,7365,7420,6791,6892,6858,7080,6970,6653,6713,6626,6512,7421,6903,-6.30%,-7.00%
+4,French,4598,4740,4693,4991,4927,4775,4771,4602,4821,4913,4842,5283,4912,5134,4792,5025,4703,4554,4783,4597,4752,4816,4665,5177,4783,5139,4736,4841,4807,4888,5060,4791,4863,4931,4797,5256,5128,7.20%,-2.40%
+5,Russian,3295,3802,3658,3839,3968,3776,3930,3819,4062,4184,4067,4553,4368,4698,4265,4411,4339,3968,4044,3788,4160,4239,4148,4811,4528,4592,4341,4355,4250,4122,4213,4041,4138,4178,4122,4662,4420,-2.40%,-5.20%
+6,Spanish,3952,4046,4023,4203,4138,4398,4223,4166,4201,4038,3963,4279,3904,4070,4011,4312,3868,3935,3918,3886,3898,3882,3857,4204,3919,4013,3800,3952,4073,4209,4152,4132,4067,4224,4242,4470,4353,11.10%,-2.60%
+7,Japanese,4124,4458,4216,4505,4413,4292,4310,4216,4266,4050,4077,4321,4059,4544,4217,4326,3961,3920,4026,3977,4156,3857,4080,4173,3957,3720,3649,3843,3539,3725,4037,3958,3904,3662,3675,4045,3879,-2.00%,-4.10%
+8,Italian,2823,2917,2830,2806,2965,2894,2833,3046,2772,2833,2820,3103,2882,2846,2865,3121,2996,2772,2847,2891,2767,2698,2716,3224,2930,2847,2723,2911,2935,2912,2878,2900,2676,2669,2835,3213,3118,6.40%,-3.00%
+9,Chinese,1747,1819,1819,1873,1897,2038,1999,1666,1758,1625,1699,1893,1759,1753,1873,1792,1835,1782,1803,1567,1585,1585,1659,1746,1713,1657,1696,1644,1674,1915,1903,1716,1701,1689,1707,1931,1969,14.90%,2.00%
+10,Portuguese,1615,1658,1650,1772,1680,1841,1869,1771,1737,1607,1670,1868,1752,1756,1810,1803,1650,1714,1659,1593,1579,1599,1712,1901,1668,1615,1574,1563,1638,1674,1613,1576,1506,1446,1612,1702,1594,-4.40%,-6.30%
+11,Polish,2008,1962,1853,1895,1930,1974,1974,1871,1787,1869,1795,1950,1790,1754,1843,1753,1686,1645,1640,1567,1554,1531,1592,1763,1711,1594,1543,1553,1555,1616,1569,1433,1508,1434,1535,1667,1568,-8.40%,-5.90%
+12,Dutch,1502,1579,1432,1528,1526,1461,1513,1471,1430,1484,1516,1606,1508,1505,1450,1580,1460,1398,1523,1357,1395,1422,1332,1610,1457,1490,1453,1546,1573,1470,1511,1381,1406,1395,1423,1526,1419,-2.60%,-7.00%
+13,Swedish,1034,1075,988,1024,945,929,948,978,1052,1055,953,1061,967,1023,953,976,884,830,863,811,845,876,798,993,945,915,855,832,763,743,793,819,835,801,830,921,831,-12.10%,-9.80%
+14,Ukrainian,323,350,320,345,408,359,368,385,410,451,394,486,486,614,577,569,525,498,486,506,551,550,597,684,660,700,642,653,618,615,622,629,686,696,706,751,757,14.70%,0.80%
+15,Hebrew,582,622,658,640,686,700,721,585,674,611,616,642,601,655,674,688,702,741,706,716,670,651,664,691,678,670,693,705,733,762,838,692,700,612,693,699,710,4.70%,1.60%
+16,Korean,569,579,603,707,754,712,788,707,790,762,750,789,758,794,730,777,817,709,698,614,671,693,725,792,715,655,641,763,704,714,759,714,829,721,746,773,705,-1.40%,-8.80%
+17,Czech,573,597,536,612,594,577,554,551,541,586