How to create bar graph with portions (multi-dimensional)?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to create a bar graph with following qualities:
- Bar itself is split into 3 color categories, indicating portions between variables (individual y-axis from 0 - 100 %)
- Overall bar height indicates another variable height (individual y-axis)
So in total the data has 3 dimensions and it combines pie chart qualities to bar graph. This would be very nice way to visualize the data as I'm conducting near infrared spectroscopy analysis and want to compare thickness values in addition to absorption.
I think I need combine multiple y-axis with stacked groupping style (as in the picture below).
How to create this kind of bar graph?
0 Kommentare
Antworten (2)
the cyclist
am 20 Jul. 2021
This example from the documentation shows exactly how to do it.
y = [2 2 3;
2 5 6;
2 8 9;
2 11 12];
bar(y,'stacked')
You may need to adjust the code a bit, because it seems like you want to use proportions rather than values.
Siehe auch
Kategorien
Mehr zu Annotations finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!