data points
Number of times #Arduino hashtag appeared together with "program" or "code" on Twitter
Arduino is a programmable rapid prototyping electronics bread board.
| Time Recorded (time1372) | Data (data1372) |
|---|---|
| 22 May 2013 08:15:20 | [7] |
| 21 May 2013 08:15:22 | [7] |
| 20 May 2013 08:15:22 | [17] |
| 19 May 2013 08:15:19 | [8] |
| 18 May 2013 08:15:20 | [5] |
s = 'program%20OR%20code%20%23arduino'; % 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