Median line representation in boxplot

12 次查看(过去 30 天)
I converted the boxplot color to black. So i want to distinguish median with different pattern. I tried giving notch option to boxplot. But that does not look nice. Is there any way to represent median in dotted lines?? or any other nice representation???

采纳的回答

Wayne King
Wayne King 2013-6-14
Can you please show an example, because the color of the median line defaults to red. So I don't think I understand what you're saying. At any rate, you can modify that line like this:
load carsmall;
boxplot(MPG)
h = findobj(gca,'tag','Median');
set(h,'linestyle','-.');
set(h,'Color',[0 0 0])
  1 个评论
Divya
Divya 2013-6-14
As an example,
figure
h = boxplot(abs((t_base)-(t_60min)),'notch','on','sym','k*', 'colors','k');title('Base 60min')
set(h,{'linew'},{2})
Here when the color black is chosen for whole boxplot, then the median is not distinguished. So i enabled notch to 'on'. So that the median is distinguish with sharp edges. But when there is a case the 25th percentile and the median are same, then the median looks like horns. As an example i am attaching the image link below
The example you gave is working. But still when the median and 25th percentile are same, we can not distinguish the median.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Annotations 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by