This plot shows Cody Activity (as measured by items on the Recent Activities page) normalized by the number of players.
% Recent activity
t1 = time1283;
d1 = data1283;
% Number of players
t2 = time1285;
d2 = data1285;
tn = unique([t1; t2]);
tn(tn < max(t1(1),t2(1))) = [];
tn(tn > min(t1(end),t2(end))) = [];
d1n = interp1(t1,d1,tn);
d2n = interp1(t2,d2,tn);
plot(tn,d1n./d2n)
ylabel('Cody Activity/Number of Players')
datetick
title('Cody Activity per Player')
data points
Created 26 Jan 2012 by Rob Nickerson
158 views (30 days)
This trend is associated in this plot (though may not be used.)
data points
Created 25 Jan 2012 by Santosh Kasula (1 Like)
74 views (30 days)
This trend is associated in this plot (though may not be used.)
0 comments