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.
Évolution du nombre d'articles sur la Wikipédia en français avec ajout d'éléments pour l'étude d'une fonction affine à des fins de prévision.
SVG development
InfoField
The source code of this SVG is invalid due to an error.
This W3C-invalid plot was created with Matplotlib.
This W3C-invalid image was improved or created by the Wikigraphists of the Graphic Lab (fr). You can propose images to clean up, improve, create or translate as well.
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.
#!/usr/bin/python# -*- coding: utf-8 -*-frompylabimport*frommatplotlib.datesimportYearLocator,MonthLocator,DateFormatterimportdatetimedates=[]nbArticles=[]# Lecture des donneesdataFile=open('data.dat','r')lines=dataFile.readlines()forlineinlines: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 courbeax=subplot(111)plot_date(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 graphiquesavefig('Evolution number articles WP-fr.svg')show()