| plotCI(data, m1, s1, ci1, m2, s2, ci2)
|
function plotCI(data, m1, s1, ci1, m2, s2, ci2)
% plotCI(data, m1, s1, mci1, m2, s2, mci2)
% Plot profiles, average profiles, and confidence intervals
%
% Input:
% data - historical energy usage data
% m1 - mean daily profile
% s1 - standard deviation of daily profile
% ci1 - 95% confidence interval of daily profile
% m2 - mean month profile
% s2 - standard deviation of month profile
% ci2 - 95% confidence interval of month profile
% Copyright 2007 The MathWorks, Inc.
%% Get number of days and number of hours
numDays = size(data, 1);
numHours = size(data, 2);
%% Create Figure
figure('Units', 'Pixels', 'Position', [100, 100, 800, 400]);
% Create subplot for visualizing daily profile
subplot(1,2,1);
plot(data', 'Color', [.8 .8 .8]);
patch([1:numHours,numHours:-1:1],[ci1(1,:), ci1(2,end:-1:1)], [.8 .8 .8])
line(1:numHours, m1, 'Linewidth', 2, 'Color', 'r');
grid on; xlim([1 numHours]);
xlabel('hours');
ylabel('system load (MW)');
title('Daily Profile (mean & CI)');
% Create subplot for visualizing month profile
subplot(1,2,2);
plot(data, 'Color', [.8 .8 .8]);
patch([1:numDays,numDays:-1:1],[ci2(1,:), ci2(2,end:-1:1)], [.8 .8 .8])
line(1:numDays, m2, 'Linewidth', 2, 'Color', 'r');
grid on;xlim([1 numDays]);
xlabel('days');
ylabel('system load (MW)');
title('Month Profile (mean & CI)');
|
|