data points
These are the top 10 sub-3000 Contributors in Answers
| Time Recorded (time1756) | Data (data1756) |
|---|---|
| 20 Jun 2013 09:00:41 | [1886545 2794 1440443 2631 1841757 2597 1798167 2550 2021205 2196 631608 1592 1455089 1358 756104 1332 1670 1273 2542023 1257] |
| 19 Jun 2013 09:00:40 | [1886545 2794 1440443 2609 1841757 2587 1798167 2550 2021205 2194 631608 1592 1455089 1358 756104 1330 1670 1273 2542023 1257] |
| 18 Jun 2013 09:00:42 | [1886545 2794 1440443 2591 1841757 2587 1798167 2546 2021205 2194 631608 1592 1455089 1358 756104 1330 1670 1273 2542023 1247] |
| 17 Jun 2013 09:00:40 | [1886545 2794 1841757 2587 1440443 2579 1798167 2546 2021205 2194 631608 1592 1455089 1358 756104 1330 1670 1267 2542023 1245] |
| 16 Jun 2013 09:00:39 | [1886545 2794 1440443 2571 1841757 2571 1798167 2544 2021205 2194 631608 1592 1455089 1358 756104 1314 1670 1267 2542023 1245] |
url = 'http://www.mathworks.com/matlabcentral/answers/contributors';
html = urlread(url);
% FORMAT:
% <a href="/matlabcentral/answers/contributors/631608-andrew-newell" title="Reputation: 1560">Andrew Newell</a>
tk = regexp(html,'/matlabcentral/answers/contributors/(\d+).*?" title="Reputation: (\d+)"','tokens');
n = 50;
vals = zeros(2,n);
for i = 1:n
profid = str2num(tk{i}{1});
rep = str2num(tk{i}{2});
vals(1,i) = profid;
vals(2,i) = rep;
end
% Get the 10 contributors with the best sub-3000 score
ix1 = cumsum(vals(2,:) < 3000);
ix2 = (ix1 > 0) & (ix1 < 11);
vals = vals(:,ix2);
vals = vals(:)';
updatetrend(vals)
0 comments