How to create a stacked bar out of two separate bar charts (Datasets)?

12 views (last 30 days)
Hi everyone,
I have two 5x6 data available. At the moment, it is being plotted as the following but how can I make them stacked?
Right now I am concating data using > Concat = [Data1;Data2] and then I use > bar(Concat). It does not work with bar(concat, 'stacked') I tried to concat them using horizontal version but that does not work too.
  4 Comments
Simon Chan
Simon Chan on 4 Aug 2021
You may add some dummy data to separate each group.
However, the XTick may not be consistent with your data and hence I remove it in the following figure.
Wolfgang McCormack
Wolfgang McCormack on 4 Aug 2021
Edited: Wolfgang McCormack on 4 Aug 2021
@Simon Chan oh that's exactly what I wanted, could you please tell me how you did that? Thank you
by the way, is ther eany option to keep the color scheme the same as in my chart?

Sign in to comment.

Accepted Answer

Simon Chan
Simon Chan on 4 Aug 2021
You may try the following code, but noticed that the XTick is not consistent with your data since there are additional dummy data.
Data1 = round(100*rand(5,6)); % Your data Data1
Data2 = round(100*rand(5,6)); % Your data Data2
dummy = zeros(5,6); % Dummy data
Data1_extend = vertcat(Data1,dummy);
Data2_extend = vertcat(Data2,dummy);
Data_combine = horzcat(Data1_extend(:), Data2_extend(:));
bar(Data_combine,'stacked');
f = gcf;
f.Children.XTick=''; % Remove XTick
Not good at setting colors on bar chart, may be someone provide the solution about that.
  3 Comments
Simon Chan
Simon Chan on 4 Aug 2021
I have not using any curly brace or dot indexing in the code above.
What are the data type of your 5x6 data?
Did you just try to run my code alone and getting the same error?
Wolfgang McCormack
Wolfgang McCormack on 4 Aug 2021
@Simon Chan yes I just copy and pasted yours and tried to run it to see what you mean by xtick :D

Sign in to comment.

More Answers (0)

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!