How to use Bar to plot two separate groups in the same plot??
1 view (last 30 days)
Show older comments
So to make it easier to explain here is an image of what im trying to do:
I've tried to group them up with Bar() but it comes out all funky looking. The best I've reached is making them come out on separate plots, but not really what im looking for. What I want is to group the variable "Inkomst" to the left and "KPI" on the right as shown in the picture.
The code is below:
clear
KPI = [ 3809 3902 3986 4063 4078 4097 4153 4243]
Inkomst = [274.6 266.4 266.2 270.4 280.9 291.9 306.8 323.2]
subplot(2,1,1)
bar(KPI)
subplot(2,1,2)
bar(Inkomst)
0 Comments
Accepted Answer
Robert U
on 14 Sep 2022
Hi Serhat Misto,
try to change XTickLabels in your axis:
KPI = [ 3809 3902 3986 4063 4078 4097 4153 4243];
Inkomst = [274.6 266.4 266.2 270.4 280.9 291.9 306.8 323.2];
fh = figure;
ah = axes(fh);
bar(ah,[Inkomst;KPI])
ah.XTickLabel = [{'Inkomst'};{'KPI'}];
Kind regards,
Robert
2 Comments
Robert U
on 14 Sep 2022
Hi Serhat Misto,
changes to your code:
- Use handles to address the UI elements in a more robust way.
- bar() allows to plot structured data (in vectors) by supplying matrices.
- bar() allows to plot against several data types as x-axis values but not strings or char. Thus, change the integer written in XTickLabel Property of axis (which is anyway an array of char) to the desired array of char.
Kind regards,
Robert
More Answers (0)
See Also
Categories
Find more on 2-D and 3-D Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!