Shows the Red Sox in relation to all other MLB teams
data1690 = data1690/1000;
redSox = data1690(:, 23);
allOthers = data1690;
allOthers(:, 23) = [];
a = axes('ColorOrder', repmat(linspace(0.5,0.7,30)', [1 3]));
hold on;
plot(a, time1690, allOthers, 'LineWidth', 1);
plot(a, time1690, redSox, 'Color', [0.8 0 0], 'LineWidth', 3);
text(time1690(end), redSox(end), sprintf(' Current:\n %0.3f', redSox(end)));
datetick x;
box off;
grid on;
ylabel('Win Percentage');
data points
Created 25 May 2012 by Ned Gulley
126 views (30 days)
This trend is associated in this plot (though may not be used.)
0 comments