data points
Number of times #HPC #GPU hashtags appeared together on Twitter
These hashtags are used together to cover technical computing topics in contrast to stand alone #GPU hashtag which often includes computer graphics acceleration topics and games.
| Time Recorded (time1369) | Data (data1369) |
|---|---|
| 21 May 2013 10:00:21 | [7] |
| 20 May 2013 10:00:21 | [6] |
| 19 May 2013 10:00:21 | [0] |
| 18 May 2013 10:00:21 | [7] |
| 17 May 2013 10:00:21 | [2] |
s = '%23hpc%20AND%20%23gpu'; % 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