gpt4 book ai didi

matlab - 分组箱线图matlab

转载 作者:太空宇宙 更新时间:2023-11-03 20:02:26 24 4
gpt4 key购买 nike

我有 x=rand(1000,6); y=rand(1000,6); D(:,1:2:12)=x; D(:,2:2:12)=y;

我想绘制一个分组的 boxplot,其中 x(:,i) 和 y(:,i) 是分组的箱线图(或因子对)。但似乎无法弄清楚如何指定分组。

因此:

figure('color',[1,1,1]);
boxplot(D,'factorgap',10,'color','rk')
axis([0 25 -1 5])

set(gca,'xtick',1.8:4.3:50)
set(gca,'ytick',0:10)
set(gca,'xticklabel',{'Direct care','Housekeeping','Mealtimes','Medication','Miscellaneous','Personal care'})

ylabel('Normalised Y');
legend(findobj(gca,'Tag','Box'),'HBN04-01 multibed','YAB single ')

enter image description here

但它看起来有点凌乱,如何让成对的箱线图之间的间隙变大?

最佳答案

你需要一个双分组变量:

boxplot(D, {reshape(repmat('A':'F',2,1),12,1) repmat((1:2)',6,1)} ,'factorgap',10,'color','rk')

将标签居中是非常不切实际和噩梦般的。

关于matlab - 分组箱线图matlab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16267440/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com