This plot contains two subplots.
Plot #1 the number of times #GPGPU hashtag appeared on Twitter
#GPGPU hashtag as well as #HPC #GPU combo are used in contrast to stand alone #GPU hashtag which often includes computer graphics acceleration topics and games.
Plot #2 the number of times Cloud Related Hashtags appeared on Twitter - one trend for #AWS EC2, andother for #HPC #Cloud
#AWS = Amazon Web Services EC2 = Elastic Compute Cloud #HPC = High Performance Computing #Cloud = Cloud Computing
% time1371 and data1371 available for use
% for Count of Tweets containing #HPC #Cloud Hashtags
%
% time1367 and data1367 available for use
% for Count of Tweets containing "EC2" with #AWS Hashtag
%
% time1369 and data1369 available for use
% for Count of Tweets containing #HPC #GPU Hashtags
%
% Count of Tweets containing #GPGPU Hashtag
% time vector is: time1368
% data vector is: data1368
subplot(2,1,1)
plot(time1368,data1368, 'b-');
hold on
plot(time1369,data1369, 'r-');
datetick
legend('#GPGPU', '#HPC #GPU', 'Location', 'Best')
title('Tweets Containing GPU related Hashtags')
hold off
% time1371 and data1371 available for use
% for Count of Tweets containing #HPC #Cloud Hashtags
%
% Count of Tweets containing "EC2" with #AWS Hashtag
% time vector is: time1367
% data vector is: data1367
subplot(2,1,2)
plot(time1367,data1367, 'b-');
hold on
plot(time1371,data1371, 'r-');
datetick
legend('#AWS EC2', '#HPC #Cloud', 'Location', 'Best')
title('Tweets Containing Cloud related Hashtags')
hold off
data points
Created 05 Feb 2012 by Toshiaki Takeuchi
73 views (30 days)
This trend is associated in this plot (though may not be used.)
data points
Created 05 Feb 2012 by Toshiaki Takeuchi
64 views (30 days)
This trend is associated in this plot (though may not be used.)
data points
Created 05 Feb 2012 by Toshiaki Takeuchi
87 views (30 days)
This trend is associated in this plot (though may not be used.)
data points
Created 05 Feb 2012 by Toshiaki Takeuchi
66 views (30 days)
This trend is associated in this plot (though may not be used.)
0 comments