How to create bar graph with portions (multi-dimensional)?
2 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (2 件)
the cyclist
2021 年 7 月 20 日
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.
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!