R:{ggplot2}:如何/可以独立调整facet_grid 图上的x 轴限制?
我创建了一组由三个单变量密度组成的多面集合——比较 MCMC 方法。如下所示
目前,我不关心尾巴。那么我怎样才能将上面图上的 x 轴限制更改为:
c(-3,1)
c(-2,0)
c(-10, -8)
这可能吗?我已经阅读过 这个帖子是 2009 年的,但似乎不是去工作。这被实施了吗?
I created a faceted set of three univariate densities -- comparing MCMC methods. Shown below
For the moment, I don't care about the tails. So how can I change the x-axis limits on the plots above to be:
c(-3,1)
c(-2,0)
c(-10, -8)
Is this even possible? I've already read this thread from 2009, but it doesn't seem to work. Was this implemented?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以通过指定允许为每个方面独立设置限制
。还有“free”和“free_y”选项。
You can always allow limits to be set independently for each facet by specifying
There are also "free" and "free_y" options.