-
Notifications
You must be signed in to change notification settings - Fork 0
/
barweb.m
195 lines (182 loc) · 6.01 KB
/
barweb.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
function handles = barweb(barvalues, errors, width, groupnames, bw_title, bw_xlabel, bw_ylabel, bw_colormap, gridstatus, bw_legend, error_sides, legend_type)
%
% Usage: handles = barweb(barvalues, errors, width, groupnames, bw_title, bw_xlabel, bw_ylabel, bw_colormap, gridstatus, bw_legend, error_sides, legend_type)
%
% Ex: handles = barweb(my_barvalues, my_errors, [], [], [], [], [], bone, [], bw_legend, 1, 'axis')
%
% barweb is the m-by-n matrix of barvalues to be plotted.
% barweb calls the MATLAB bar function and plots m groups of n bars using the width and bw_colormap parameters.
% If you want all the bars to be the same color, then set bw_colormap equal to the RBG matrix value ie. (bw_colormap = [1 0 0] for all red bars)
% barweb then calls the MATLAB errorbar function to draw barvalues with error bars of length error.
% groupnames is an m-length cellstr vector of groupnames (i.e. groupnames = {'group 1'; 'group 2'}). For no groupnames, enter [] or {}
% The errors matrix is of the same form of the barvalues matrix, namely m group of n errors.
% Gridstatus is either 'x','xy', 'y', or 'none' for no grid.
% No legend will be shown if the legend paramter is not provided
% 'error_sides = 2' plots +/- std while 'error_sides = 1' plots just + std
% legend_type = 'axis' produces the legend along the x-axis while legend_type = 'plot' produces the standard legend. See figure for more details
%
% The following default values are used if parameters are left out or skipped by using [].
% width = 1 (0 < width < 1; widths greater than 1 will produce overlapping bars)
% groupnames = '1', '2', ... number_of_groups
% bw_title, bw_xlabel, bw_ylabel = []
% bw_color_map = jet
% gridstatus = 'none'
% bw_legend = []
% error_sides = 2;
% legend_type = 'plot';
%
% A list of handles are returned so that the user can change the properties of the plot
% handles.ax: handle to current axis
% handles.bars: handle to bar plot
% handles.errors: a vector of handles to the error plots, with each handle corresponding to a column in the error matrix
% handles.legend: handle to legend
%
%
% See the MATLAB functions bar and errorbar for more information
%
% Author: Bolu Ajiboye
% Created: October 18, 2005 (ver 1.0)
% Updated: Dec 07, 2006 (ver 2.1)
% Updated: July 21, 2008 (ver 2.3)
% Get function arguments
if nargin < 2
error('Must have at least the first two arguments: barweb(barvalues, errors, width, groupnames, bw_title, bw_xlabel, bw_ylabel, bw_colormap, gridstatus, bw_legend, barwebtype)');
elseif nargin == 2
width = 1;
groupnames = 1:size(barvalues,1);
bw_title = [];
bw_xlabel = [];
bw_ylabel = [];
bw_colormap = jet;
gridstatus = 'none';
bw_legend = [];
error_sides = 2;
legend_type = 'plot';
elseif nargin == 3
groupnames = 1:size(barvalues,1);
bw_title = [];
bw_xlabel = [];
bw_ylabel = [];
bw_colormap = jet;
gridstatus = 'none';
bw_legend = [];
error_sides = 2;
legend_type = 'plot';
elseif nargin == 4
bw_title = [];
bw_xlabel = [];
bw_ylabel = [];
bw_colormap = jet;
gridstatus = 'none';
bw_legend = [];
error_sides = 2;
legend_type = 'plot';
elseif nargin == 5
bw_xlabel = [];
bw_ylabel = [];
bw_colormap = jet;
gridstatus = 'none';
bw_legend = [];
error_sides = 2;
legend_type = 'plot';
elseif nargin == 6
bw_ylabel = [];
bw_colormap = jet;
gridstatus = 'none';
bw_legend = [];
error_sides = 2;
legend_type = 'plot';
elseif nargin == 7
bw_colormap = jet;
gridstatus = 'none';
bw_legend = [];
error_sides = 2;
legend_type = 'plot';
elseif nargin == 8
gridstatus = 'none';
bw_legend = [];
error_sides = 2;
legend_type = 'plot';
elseif nargin == 9
bw_legend = [];
error_sides = 2;
legend_type = 'plot';
elseif nargin == 10
error_sides = 2;
legend_type = 'plot';
elseif nargin == 11
legend_type = 'plot';
end
change_axis = 0;
ymax = 0;
if size(barvalues,1) ~= size(errors,1) || size(barvalues,2) ~= size(errors,2)
error('barvalues and errors matrix must be of same dimension');
else
if size(barvalues,2) == 1
barvalues = barvalues';
errors = errors';
end
if size(barvalues,1) == 1
barvalues = [barvalues; zeros(1,length(barvalues))];
errors = [errors; zeros(1,size(barvalues,2))];
change_axis = 1;
end
numgroups = size(barvalues, 1); % number of groups
numbars = size(barvalues, 2); % number of bars in a group
if isempty(width)
width = 1;
end
% Plot bars
handles.bars = bar(barvalues, width,'edgecolor','k', 'linewidth', 2);
hold on
if ~isempty(bw_colormap)
colormap(bw_colormap);
else
colormap(jet);
end
if ~isempty(bw_legend) && ~strcmp(legend_type, 'axis')
handles.legend = legend(bw_legend, 'location', 'best', 'fontsize',12);
legend boxoff;
else
handles.legend = [];
end
% Plot erros
for i = 1:numbars
x =get(get(handles.bars(i),'children'), 'xdata');
x = mean(x([1 3],:));
handles.errors(i) = errorbar(x, barvalues(:,i), errors(:,i), 'k', 'linestyle', 'none', 'linewidth', 2);
ymax = max([ymax; barvalues(:,i)+errors(:,i)]);
end
if error_sides == 1
set(gca,'children', flipud(get(gca,'children')));
end
ylim([0 ymax*1.1]);
xlim([0.5 numgroups-change_axis+0.5]);
if strcmp(legend_type, 'axis')
for i = 1:numbars
xdata = get(handles.errors(i),'xdata');
for j = 1:length(xdata)
text(xdata(j), -0.03*ymax*1.1, bw_legend(i), 'Rotation', 60, 'fontsize', 12, 'HorizontalAlignment', 'right');
end
end
set(gca,'xaxislocation','top');
end
if ~isempty(bw_title)
title(bw_title, 'fontsize',14);
end
if ~isempty(bw_xlabel)
xlabel(bw_xlabel, 'fontsize',14);
end
if ~isempty(bw_ylabel)
ylabel(bw_ylabel, 'fontsize',14);
end
set(gca, 'xticklabel', groupnames, 'box', 'off', 'ticklength', [0 0], 'fontsize', 12, 'xtick',1:numgroups, 'linewidth', 2,'xgrid','off','ygrid','off');
if ~isempty(gridstatus) && any(gridstatus == 'x')
set(gca,'xgrid','on');
end
if ~isempty(gridstatus) && any(gridstatus == 'y')
set(gca,'ygrid','on');
end
handles.ax = gca;
hold off
end