Azzera filtri
Azzera filtri

Sub category plots in MATLAB?

9 visualizzazioni (ultimi 30 giorni)
vidit kedia
vidit kedia il 1 Dic 2020
Risposto: Shubham Khatri il 7 Dic 2020
I want to plot a graph with sub category. It should look something like the graph in the image.

Risposte (1)

Shubham Khatri
Shubham Khatri il 7 Dic 2020
Hello,
Please take a look at the following code
example = readtable('example.CSV');
example = sortrows(example,'Group');
h = bar(table2array(example(:,3:6)),'stacked');
set(gca,'xticklabel',table2array(example(:,2)));
Also please take a look at this answer
Hope it helps

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by