plotting a bar chart with "text" categories on the x-axis

Is it possible to create a bar chart like this in MATLAB?
Any guidance or help is appreciated!
(I included a csv-file with the data for this chart.)

回答 (1 件)

Ahmet Cecen
Ahmet Cecen 2018 年 4 月 17 日

0 投票

Here is a start:

example = readtable('example.CSV');
example = sortrows(example,'Group');
h = bar(table2array(example(:,3:6)),'stacked');
set(gca,'xticklabel',table2array(example(:,2)));

カテゴリ

ヘルプ センター および File ExchangeDiscrete Data Plots についてさらに検索

製品

質問済み:

AWi
2018 年 4 月 17 日

回答済み:

2018 年 4 月 17 日

Community Treasure Hunt

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

Start Hunting!

Translated by