Plot to see if there is a corellation between the Sox batting average, and their current standing in the AL East.
% time1609 and data1609 available for use
% for Boston Red Sox Games Back in AL East
%
% Boston Red Sox - 2012 Team Batting Average
% time vector is: time1580
% data vector is: data1580
hold all
plot(time1580,100*data1580/data1580(1),'LineWidth',2);
plot(time1609,100*data1609/data1609(1),'LineWidth',2);
hold off
datetick
title('2012 Red Sox Batting Avg. vs. Games Back in AL East')
ylabel('Players and Problems')
legend({'Batting Average','Games Back'}, ...
'Location','NorthWest')
box on
data points
Created 06 Apr 2012 by Rob Nickerson
180 views (30 days)
This trend is associated in this plot (though may not be used.)
data points
Created 25 Apr 2012 by Patrick Kalita
58 views (30 days)
This trend is associated in this plot (though may not be used.)
0 comments