Bar graph - plot data
1 view (last 30 days)
Show older comments
Francesco Marchione
on 31 Mar 2023
Edited: Dyuman Joshi
on 31 Mar 2023
Hello, I would like to plot a graph like this. Can anyone help me in writing this code?
Thank you so much
3 Comments
Accepted Answer
Antoni Garcia-Herreros
on 31 Mar 2023
Hello Francesco,
close all
data=[2,3;2,6;2,6;2,6];
ax=axes;
b=bar(data);
ylim([0 12])
L1 = ["Mu" "Tau"];
a3=[b(1).XEndPoints; b(2).XEndPoints];
x3=a3(:)';
yp1 = -0.5*ones(size(x3));
yp2 = 2.5*yp1;
ax.XTickLabel={''};
for i=1:2:numel(x3)
text(x3(i)-0.08, yp1(i), L1(1))
text(x3(i+1)-0.08, yp1(i), L1(2))
end
L2=['1' '2' '3' '4'];
for i=1:4
text(i, yp2(i), L2(i))
end
0 Comments
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!