data points
Number of times "MindStorms NXT" appeared on Twitter.
Lego MindStorms NXT is a popular programmable robotic kit.
| Time Recorded (time1374) | Data (data1374) |
|---|---|
| 23 May 2013 10:30:17 | [20] |
| 22 May 2013 10:30:17 | [13] |
| 21 May 2013 10:30:16 | [12] |
| 20 May 2013 10:30:18 | [9] |
| 19 May 2013 10:30:18 | [9] |
s = 'MindStorms%20NXT'; % search query
d = datestr(now-1,29); % start from the day before
url = 'http://search.twitter.com/search.atom';
url = [url sprintf('?q=%s&since=%s&rpp=100',s,d)];
% Parse the atom feed into a DOM tree
doc = xmlread(url);
% Get all <entry> tags
entries = doc.getElementsByTagName('entry');
% Count the number of entry elements
updatetrend(entries.getLength)
0 comments