% Files on the File Exchange
% time vector is: time1151
% data vector is: data1151
data1151 = data1151(:);
t = time1151(2:end);
d = diff(data1151)./diff(time1151);
windowSize = 14;
df = filter(ones(1,windowSize)/windowSize,1,d);
plot(t,d,'x')
hold on
plot(t,df,'blue');
hold off
ylim([0 20])
datetick
ylabel('files/day')
title('File Exchange Growth (14 day moving average)')
data points
Created 18 Oct 2011 by Ned Gulley (1 Like)
189 views (30 days)
This trend is associated in this plot (though may not be used.)
0 comments