- Upload your data
- Upload your code
- Make a figure with just two panels: One that is how you want it, and one that is not how you want it
- Explain what you mean by "it shifts away from the actual origin". I'm not sure what "it" is (e.g. are you talking about the boxes, or the lines, or something else?). I don't know what the "actual origin" means.
How can I make a boxplot match at 0 with another plot?
3 次查看(过去 30 天)
显示 更早的评论
Hi
I'm having trouble making a boxplot match at the origin with another plot (colored lines). The first plot works just fine, but as the boxplot works with a categorical x axis, it shifts away from the actual origin and I just cant make it match back into place.
Can anyone help me, please.
1 个评论
the cyclist
2023-1-14
编辑:the cyclist
2023-1-14
Here are a few things that would make it easier to help you. If you can do some or all of these things, you might have a better chance at getting a solution:
Mainly, I don't know what exactly is supposed to "match at the origin". And even if I did understand that, it's probably not possible to give advice about how to fix that, without seeing your code, your data, or both.
回答(1 个)
Constantino Carlos Reyes-Aldasoro
2023-1-16
A workaround to solve your problem is to call the boxplots with zero values in between your actual data. E.g.
plot([1 2 3 4 5 6 7],[ 9 8 7 6 5 4 3 ],'-o')
hold on
x1 = rand(50,1);
x2 = ones(50,1);
boxplot([0 ; 5*x1 ; 0 ;0; x1*4;0;x1*8],[1; 2*x2; 3 ;4; 5*x2;6;7*x2])
In this way, the boxplots are located exactly at the same location as the other plot.
3 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!