Boxplot inside a bar graph.

10 次查看(过去 30 天)
Say I have a bar graph with two groups, and 4 bars in each group:
bar(rand(2,4))
I would ike to plot a boxplot (or else a bunch of points) in the second bar of each group (the second bar and the boxplot have to be centered in the x axis). Is it possible? I have found no clue.
Thanks in advance.

采纳的回答

Cris LaPierre
Cris LaPierre 2020-12-8
Use hold on to place multiple plots on the same axes. Always pair it with hold off when you are complete.
If you want to add points, that sounds like a job for scatter, not boxplot.
You will need to tweak your solution to work with the specific approach you take. Here's some code to perhaps get you started.
b = bar(rand(2,4));
hold on
x = ones(10,2).*b(2).XEndPoints;
boxchart(x(:),rand(20,1),"BoxWidth",0.15)
hold off

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Bar Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by