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

4 visualizaciones (últimos 30 días)
AWi
AWi el 17 de Abr. de 2018
Respondida: Ahmet Cecen el 17 de Abr. de 2018
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.)

Respuestas (1)

Ahmet Cecen
Ahmet Cecen el 17 de Abr. de 2018

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)));

Categorías

Más información sobre Bar Plots en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by