箱ひげ図を描いているので、MATLAB で次のコードを使用します。私はmatlabが初めてです。
for k=1:N % running through k categories in the plot
patch(...); % The box
% now drawing the whiskers and percentiles
line(...); % the median
line(..); % the 25th percentile
line(..); % the 75th percentile
line(...); % the max
line(..); % the min
end
% THIS LINE ONLY IS DISPLAYED NOT THE BOX-PLOT, WHY??
% A poly-line passing median of each box
plot([1:N]-0.5, Ys, '-Xr', 'LineWidth', 4, 'MarkerSize', 12);
ボックスプロットではなく、最後のステートメントで描かれた線のみが表示されますステートメントをコメントアウトするとplot
、ボックスプロットが表示されます。
しかし、それらを重ねて表示するにはどうすればよいでしょうか。