结合'分组'并且'堆积'在BAR情节?

时间:2014-01-23 10:06:52

标签: matlab plot bar-chart

我知道如何绘制grouped BAR图和stacked BAR图如下:

Y = round(rand(5,4)*10);
figure;
subplot(2,2,1); bar(Y,'grouped'); title('Group') % similar for 'hist'/'histc'
subplot(2,2,2); bar(Y,'stacked'); title('Stack')

这将生成如下内容:

enter image description here

我的问题是如何在BAR图中合并选项groupedstacked,以便能够生成如下图(堆栈3,4在一起) )?或者有没有其他方法来实现这一目标?附:我手动绘制了下图。

enter image description here

1 个答案:

答案 0 :(得分:5)

我终于找到了一种方法,这个想法是:

  1. 绘制堆叠条形图组(需要plotBarStackGroups.m)。

  2. 设置额外的零以模拟原始组。

  3. 将这些组合在一起,代码将类似于:

    Y = round(rand(5,3,2)*10);
    Y(1:5,1:2,1) = 0; % setting extra zeros to simulate original groups.
    
    groupLabels = { 1, 2, 3, 4, 5};     % set labels
    plotBarStackGroups(Y, groupLabels); % plot groups of stacked bars
    

    结果将如下:

    enter image description here