我有 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 ')
但它看起来有点不整洁,如何使成对的箱线图之间的差距更大?