Suppose I have time series for PSPP, CBPP3, CSPP, ABSPP. How would you make a plot that looks like the one above?

 采纳的回答

Adam Danz
Adam Danz 2020-4-15
Use bar(x, y, 'stacked') where x are datetime values (or integers for years) and y is a matrix where each row defines the stacked values for 1 bar. There's a example of a stacked bar chart in within the link.

更多回答(1 个)

Assuming your inputs are a row vectors of the same size.
y=[PSPP',CBPP3',CSPP3',ABSPP'];
bar(y,'stacked');

类别

帮助中心File Exchange 中查找有关 Axis Labels 的更多信息

产品

标签

Community Treasure Hunt

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

Start Hunting!

Translated by