Stacked bar plot not working correctly
1 回表示 (過去 30 日間)
古いコメントを表示
x = [1980 1990 2000];
y = [15 20 -5; 10 -17 21; -10 5 15];
bar(x,y,'stacked')
In the documentation page they display this plot:
![BarStackWithNegativeValuesExample_01.png](https://ch.mathworks.com/help/examples/graphics/win64/BarStackWithNegativeValuesExample_01.png)
When I type the same code i get this one:
![FailedPlot.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/245654/FailedPlot.png)
I am using Matlab R2018b. Is this a bug in the release version or is it just me?
0 件のコメント
回答 (2 件)
Roshni Garnayak
2019 年 11 月 10 日
It was a bug. The issue has been resolved in MATLAB R2019b.
0 件のコメント
Sushant Varghese
2020 年 1 月 30 日
編集済み: Sushant Varghese
2020 年 1 月 30 日
It's a bug. Although not ideal, I used this as a work around.
t1 = X;
t2 = X;
t1(t1<0) = 0;
t2(t2>0) = 0;
subplot(2,1,1)
bar(t1,'stacked');
subplot(2,1,2)
bar(t2,'stacked');
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Annotations についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!