删除facet_wrap图中的“浮动”轴标签?

时间:2012-08-23 16:46:36

标签: r ggplot2

使用ggplot2中的facet_wrap创建网格,但我的面板数量不均匀,因此最后一行不完整。在最后一个底部,空白面板是轴刻度和文本。是否可以将此轴向上移动(为每列中的最后一个面提供应用free_x的外观)?如果没有,我可以完全删除它,如下所示吗?

通过示例澄清,这就是我得到的: http://sape.inf.usi.ch/sites/default/files/ggplot2-facet-wrap.png

enter image description here

我希望在这里看到的东西(尽管理想情况下,第4列的小平面上有轴标记): Changing facet label to math formula in ggplot2

enter image description here

感谢您的任何想法或见解!

1 个答案:

答案 0 :(得分:2)

使用facet_wrap,当我在0.9.1中执行此操作时,ggplot会使用空白隐藏列上的x轴,如下所示。

movies$decade <- round(movies$year, -1)
ggplot(movies) + geom_histogram(aes(x=rating)) + facet_wrap(~ decade, ncol=5)

enter image description here