data points
Number of times #OpenCV appeared on Twitter
OpenCV is a popular computer vision library.
| Time Recorded (time1375) | Data (data1375) |
|---|---|
| 25 May 2013 06:30:22 | [14] |
| 24 May 2013 06:30:21 | [2] |
| 23 May 2013 06:30:19 | [11] |
| 22 May 2013 06:30:19 | [7] |
| 21 May 2013 06:30:20 | [5] |
s = '%23opencv'; % 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