3

我在使用 Matlab R2010b 和boxplot函数时遇到问题。

在以前版本的 Matlab 中,我对 boxplot.m 文件进行了一些修改,以便可以更改使用的百分位数。默认情况下,箱线图的构建考虑了第一个和第三个四分位数(第 25 个和第 75 个百分位数)来定义胡须。我的兴趣是使用第 10 个和第 90 个百分位数。

我尝试了在 Internet 上找到的所有解决方案。

boxplot所以我的问题是:有没有人找到一种方法来更改Matlab 函数(R2010b 及更高版本)使用的百分位数的默认值(第 25 和第 75 )?

非常感谢!

4

1 回答 1

1

您可以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  

这是结果。

在此处输入图像描述

于 2013-07-24T13:17:13.117 回答