ggplot2 中的多面板图:“自由且平等”的尺度?
我已向 ggplot 图发出以下命令:
facet_wrap(~variable,scales="free")
但我也希望每个面板的 x 和 y 比例相等(而面板之间的限制各不相同)。这在ggplot2中可能吗?
I have issued the following command to a ggplot figure:
facet_wrap(~variable,scales="free")
but I also want for the x and y scales to be equal for each panel (while the limits vary from panel to panel). Is this possible in ggplot2?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
facet_grid
,则可以指定space='free'
。我想这就是你想要的。If you use
facet_grid
, you can specifyspace='free'
. I think this is what you want.