File:Evolution number articles WP-fr.svg
Summary
| Description |
English: Evolution of number of articles on Wikipedia in French.
Français : Évolution du nombre d'articles sur la wikipédia en français.
Ce fichier a été constitué automatiquement par un script écrit en Python, et utilise la bibliothèque matplotlib. Il a été créé par Duloup en septembre 2006, merci à lui. |
| Date |
|
| Source | File:Evolution nb article wp franco.png |
| Author | |
| Other versions |
|
| SVG development |
Licensing
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
Script
#!/usr/bin/python
# -*- coding: utf-8 -*-
from pylab import *
from matplotlib.dates import YearLocator, MonthLocator, DateFormatter
import datetime
dates = []
nbArticles = []
# Lecture des donnees
dataFile = open('data.dat','r')
lines = dataFile.readlines()
for line in lines:
values = line.split(';')
date = values[0].split('/')
dates += [date2num(datetime.date(int(date[2]),int(date[1]),int(date[0])))]
nbArticles += [int(values[1])]
# Affichage de la courbe
ax = subplot(111)
plot(dates, nbArticles, '-r', linewidth=3)
ax.yaxis.set_major_locator (MultipleLocator(200000))
ax.yaxis.set_major_formatter(FormatStrFormatter("%6d"))
ax.yaxis.set_minor_locator (MultipleLocator(100000))
ax.xaxis.set_major_locator (YearLocator(2))
ax.xaxis.set_major_formatter(DateFormatter('%Y'))
ax.xaxis.set_minor_locator (YearLocator())
title(u"\u00C9volution du nombre d'articles de la Wikipedia en "+u"fran\u00E7ais.")
ylabel("Nombre d'articles")
xlim(dates[0], dates[len(dates) - 1])
grid(True)
# Sauvegarde de l'image et affichage du graphique
savefig('Evolution number articles WP-fr.svg')
show()
Données
Les données proviennent de Wikipédia:Historique de Wikipédia en français.
Elles sont à mettre dans un fichier "data.dat" (Attention, il ne faut pas mettre de ligne vide à la fin).
11/05/2001;0;
19/05/2001;1;
27/12/2001;55;
12/01/2002;60;
30/01/2002;88;
09/02/2002;98;
27/02/2002;264;
11/03/2002;319;
20/03/2002;406;
02/04/2002;479;
01/05/2002;576;
10/05/2002;604;
27/05/2002;691;
13/06/2002;862;
01/07/2002;943;
13/07/2002;1076;
04/08/2002;1491;
20/08/2002;1795;
07/02/2003;5000;
19/02/2003;6000;
07/03/2003;7000;
27/03/2003;8000;
13/04/2003;9051;
15/05/2003;10000;
07/07/2003;12800;
15/07/2003;13789;
05/08/2003;15000;
04/09/2003;16000;
22/11/2003;20000;
26/01/2004;25000;
14/03/2004;30000;
01/05/2004;35000;
16/06/2004;40000;
23/07/2004;45000;
29/08/2004;50000;
02/11/2004;60000;
22/12/2004;70000;
06/02/2005;80000;
14/03/2005;90000;
20/04/2005;100000;
24/05/2005;110000;
19/06/2005;120000;
09/07/2005;130000;
28/07/2005;140000;
18/08/2005;150000;
10/09/2005;160000;
30/09/2005;170000;
25/10/2005;180000;
13/11/2005;190000;
04/12/2005;200000;
23/12/2005;210000;
09/01/2006;220000;
26/01/2006;230000;
14/02/2006;240000;
04/03/2006;250000;
26/03/2006;260000;
14/04/2006;270000;
04/05/2006;280000;
23/05/2006;290000;
04/06/2006;300000;
22/06/2006;310000;
01/07/2006;320000;
18/07/2006;330000;
07/08/2006;340000;
26/08/2006;350000;
12/09/2006;360000;
02/10/2006;370000;
22/10/2006;380000;
09/11/2006;390000;
27/11/2006;400000;
16/12/2006;410000;
04/01/2007;420000;
19/01/2007;430000;
07/02/2007;440000;
23/02/2007;450000;
13/03/2007;460000;
02/04/2007;470000;
22/04/2007;480000;
13/05/2007;490000;
28/05/2007;500000;
14/06/2007;510000;
02/07/2007;520000;
22/07/2007;530000;
11/08/2007;540000;
30/08/2007;550000;
21/09/2007;560000;
15/10/2007;570000;
09/11/2007;580000;
02/12/2007;590000;
28/12/2007;600000;
20/01/2008;610000;
11/02/2008;620000;
03/03/2008;630000;
28/03/2008;640000;
22/04/2008;650000;
19/05/2008;660000;
11/06/2008;670000;
07/07/2008;680000;
31/07/2008;690000;
30/08/2008;700000;
02/10/2008;710000;
30/10/2008;720000;
23/11/2008;730000;
20/12/2008;740000;
14/01/2009;750000;
01/02/2009;760000;
23/02/2009;770000;
20/03/2009;780000;
15/04/2009;790000;
06/05/2009;800000;
29/05/2009;810000;
24/06/2009;820000;
22/07/2009;830000;
17/08/2009;840000;
15/09/2009;850000;
11/10/2009;860000;
04/11/2009;870000;
28/11/2009;880000;
21/12/2009;890000;
14/01/2010;900000;
07/02/2010;910000;
03/03/2010;920000;
28/03/2010;930000;
23/04/2010;940000;
20/05/2010;950000;
18/06/2010;960000;
17/07/2010;970000;
12/08/2010;980000;
07/09/2010;990000;
21/09/2010;1000000;
03/10/2010;1010000;
20/10/2010;1020000;
08/11/2010;1030000;
03/12/2010;1040000;
31/12/2010;1050000;
24/01/2011;1060000;
19/02/2011;1070000;
16/03/2011;1080000;
14/04/2011;1090000;
04/05/2011;1100000;
01/06/2011;1110000;
29/06/2011;1120000;
24/07/2011;1130000;
22/08/2011;1140000;
14/09/2011;1150000;
11/10/2011;1160000;
08/11/2011;1170000;
04/12/2011;1180000;
29/12/2011;1190000;
15/01/2012;1200000;
06/02/2012;1210000;
29/02/2012;1220000;
25/03/2012;1230000;
19/04/2012;1240000;
15/05/2012;1250000;
14/06/2012;1260000;
10/07/2012;1270000;
02/08/2012;1280000;
30/08/2012;1290000;
28/09/2012;1300000;
26/10/2012;1310000;
23/11/2012;1320000;
17/12/2012;1330000;
12/01/2013;1340000;
10/02/2013;1350000;
05/03/2013;1360000;
03/04/2013;1370000;
27/04/2013;1380000;
24/05/2013;1390000;
24/06/2013;1400000;
28/07/2013;1410000;
26/08/2013;1420000;
26/09/2013;1430000;
31/10/2013;1440000;
02/12/2013;1450000;
30/12/2013;1460000;
26/01/2014;1470000;
24/02/2014;1480000;
30/03/2014;1490000;
28/04/2014;1500000;
31/05/2014;1510000;
30/06/2014;1520000;
31/07/2014;1530000;
31/08/2014;1540000;
04/10/2014;1550000;
09/11/2014;1560000;
13/12/2014;1570000;
13/01/2015;1580000;
13/02/2015;1590000;
15/03/2015;1600000;
05/04/2015;1610000;
07/05/2015;1620000;
07/06/2015;1630000;
06/07/2015;1640000;
07/08/2015;1650000;
09/09/2015;1660000;
10/10/2015;1670000;
29/11/2015;1700000;
30/12/2015;1710000;
31/01/2016;1720000;
28/02/2016;1730000;
29/03/2016;1740000;
27/04/2016;1750000;
28/05/2016;1760000;
02/07/2016;1770000;
07/08/2016;1780000;
04/09/2016;1790000;
06/10/2016;1800000;
04/11/2016;1810000;
04/12/2016;1820000;
07/01/2017;1830000;
07/02/2017;1840000;
07/03/2017;1850000;
09/04/2017;1860000;
14/05/2017;1870000;
17/06/2017;1880000;
19/07/2017;1890000;
20/08/2017;1900000;
18/09/2017;1910000;
19/10/2017;1920000;
19/11/2017;1930000;
24/12/2017;1940000;
24/01/2018;1950000;
25/02/2018;1960000;
30/03/2018;1970000;
01/05/2018;1980000;
06/06/2018;1990000;
08/07/2018;2000000;
05/08/2018;2010000;
08/08/2018;2020000;
11/08/2018;2030000;
14/09/2018;2040000;
22/10/2018;2050000;
26/11/2018;2060000;
05/01/2019;2070000;
10/02/2019;2080000;
15/03/2019;2090000;
21/04/2019;2100000;
31/05/2019;2110000;
27/06/2019;2120000;
10/08/2019;2130000;
18/09/2019;2140000;
28/10/2019;2150000;
01/12/2019;2160000;
08/01/2020;2170000;
12/02/2020;2180000;
16/03/2020;2190000;
11/04/2020;2200000;
03/05/2020;2210000;
25/05/2020;2220000;
24/06/2020;2230000;
04/08/2020;2240000;
17/09/2020;2250000;
25/10/2020;2260000;
21/11/2020;2270000;
21/12/2020;2280000;
18/01/2021;2290000;
16/02/2021;2300000;
18/03/2021;2310000;
20/04/2021;2320000;
19/05/2021;2330000;
25/06/2021;2340000;
05/08/2021;2350000;
14/09/2021;2360000;
28/10/2021;2370000;
09/12/2021;2380000;
17/01/2022;2390000;
21/02/2022;2400000;
27/03/2022;2410000;
02/05/2022;2420000;
13/06/2022;2430000;
24/07/2022;2440000;
28/08/2022;2450000;
04/10/2022;2460000;
10/11/2022;2470000;
23/12/2022;2480000;
30/01/2023;2490000;
03/03/2023;2500000;
01/04/2023;2510000;
07/05/2023;2520000;
19/06/2023;2530000;
30/07/2023;2540000;
03/09/2023;2550000;
11/10/2023;2560000;
20/11/2023;2570000;
29/12/2023;2580000;
09/02/2024;2590000;
22/03/2024;2600000;
06/05/2024;2610000;
27/06/2024;2620000;
20/08/2024;2630000;
07/10/2024;2640000;
29/11/2024;2650000;
22/01/2025;2660000;
09/03/2025;2670000;
25/04/2025;2680000;
11/06/2025;2690000;
02/08/2025;2700000;
18/09/2025;2710000;