分组条形图Matlab

时间:2017-09-05 14:30:03

标签: matlab bar-chart

我试图在matlab中创建一个分组绘图栏,就像你在这个例子中看到的那样:

Grouped Plot Bar example

你知道怎么做吗?这就是我到目前为止所做的一切,它并没有像我想的那样工作。

y = [Cerrillos; Talagante];
bar(y)

title('Concentraciones 2015-2016')
xlabel('Estaciones')
ylabel('µg/m³')

1 个答案:

答案 0 :(得分:0)

以下是分组条形码:

y = [7 7; 21 15];
fig=figure();
a=bar(y)
XTickLabel={'Cerrillos' ; 'Talagante'};
XTick=[1 2]
set(gca, 'XTick',XTick);
set(gca, 'XTickLabel', XTickLabel);
set(gca, 'XTickLabelRotation', 45);
legend('2015','2016')

title('Concentraciones 2015-2016')
xlabel('Estaciones')
ylabel('µg/m³')

enter image description here