您可以boxplot
通过修改图形对象的属性(而不是修改函数本身)来更改数据/分位数的显示方式。
这是一段代码,它将修改用于蓝色框的分位数(最初,蓝色框对应于 .25 和 .75 的分位数,并将更改为 .1 和 .9)。上/下晶须的基部会相应改变。请注意,晶须的尖端没有改变(它们仍然对应于四分位距的 1.5)。您可以更改胡须的尖端,就像我们更改它们的基础部分一样。
%%% load some data
load carsmall
MPG = MPG(ismember(Origin,'USA','rows'));
Origin = Origin(ismember(Origin,'USA','rows'),:)
Origin(isnan(MPG),:) = [];
MPG (isnan(MPG),:) = [];
%%% quantile calculation
q = quantile(MPG,[0.1 0.25 0.75 0.9]);
q10 = q(1);
q25 = q(2);
q75 = q(3);
q90 = q(4);
%%% boxplot the data
figure('Color','w');
subplot(1,2,1);
boxplot(MPG,Origin);
title('original boxplot with quartile', 'FontSize', 14, 'FontWeight', 'b', 'Color', 'r');
set(gca, 'FontSize', 14);
subplot(1,2,2);
h = boxplot(MPG,Origin) %define the handles of boxplot
title('modified boxplot with [.1 .9] quantiles', 'FontSize', 14, 'FontWeight', 'b', 'Color', 'r');
set(gca, 'FontSize', 14);
%%% modify the figure properties (set the YData property)
%h(5,1) correspond the blue box
%h(1,1) correspond the upper whisker
%h(2,1) correspond the lower whisker
set(h(5,1), 'YData', [q10 q90 q90 q10 q10]);% blue box
upWhisker = get(h(1,1), 'YData');
set(h(1,1), 'YData', [q90 upWhisker(2)])
dwWhisker = get(h(2,1), 'YData');
set(h(2,1), 'YData', [ dwWhisker(1) q10])
%%% all of the boxplot properties are here
for ii = 1:7
ii
get(h(ii,1))
end
这是结果。