Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个包含三个单变量密度的多面集——比较 MCMC 方法。如下图
目前,我不在乎尾巴。那么如何将上图中的 x 轴限制更改为:
c(-3,1) c(-2,0) c(-10, -8)
这甚至可能吗?我已经阅读了 2009 年的这个帖子,但它似乎不起作用。这实施了吗?
您始终可以通过指定为每个方面独立设置限制
+ facet_wrap(...,scales = "free_x")
还有“free”和“free_y”选项。