Ja he penjat una versió actualitzada del fitxer. Aprofito per adjuntar a aquest missatge el codi Matlab que he utilitzat per crear la gràfica, per si pot ser de servei.
close all
A = readtable('undefined.csv');
n=[];
i=1;
m=size(A(:,1));
s="";
s2="";
while i<=m(1)
b=table2struct(A(i,3));
c=strsplit(b.Var3,',');
d=c(2);
ni=str2double(d);
n=[n,ni];
s=append(s,num2str(ni),',');
i=i+1;
end
t=2001:1/12:2023+1/12;
j=1;
while j<=length(t)
s2=append(s2,num2str(t(j)),",");
j=j+1;
end
figure
h=plot(t,n,'LineWidth',1.2);
grid on
xlabel('Any')
ylabel('Nombre d''articles')
title('Evolució del nombre d''articles a la Viquipèdia en català')
yticks([0 1 2 3 4 5 6 7 8]*100000)
yticklabels({'0','100k','200k','300k','400k','500k','600k','700k','800k'})
ax = gca;
ax.YAxis.Exponent = 0;
set(gcf,'color','w');
xlim([2001 t(end)])
r=[1000,10000,20000,50000,100000,250000,500000,600000,700000];
j=1;
while j<=length(r)
hold on
plot(t(sum(n<r(j))+1),n(sum(n<r(j))+1),'ro','MarkerSize',7)
disp(t(sum(n<r(j))+1))
j=j+1;
end