在 Matlab 中创建多个具有相同比例的箱线图
我想在 Matlab 中绘制几个不同的箱线图,但给它们相同的比例,这样读者就不会因为并排比较它们而被误导。
我尝试过使用 datalim 选项,但它只对箱线图施加上限,但如果数据未达到上限,则不会拉伸它。
有什么想法吗?
I'd like to plot several distinct boxplot in Matlab, but give them the same scale so that readers do not get misled by comparing them side by side.
I've tried using the datalim option, but it only imposes an upper limit to the boxplot, but does not stretch it if the data doesn't reach it.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试 linkaxes()。这将为它们提供相同的比例,并在用户缩放或其他因素改变比例时保持它们同步。
Try linkaxes(). That will give them the same scale, and keep them synchronized if the user zooms or something else changes the scale.