Remove white space between plots and table in grid.arrange

那年仲夏 提交于 2019-12-30 04:58:19

问题


I would like to remove the large spacing that is inserted by default between the plots and the table in a grid.arrange, as shown in the MWE hereafter:

require(ggplot2)
require(gridExtra)

list1=data.frame(mtcars[1:3, ])  # Dummy data
p1 = ggplot(list1, aes(mpg,cyl)) + geom_point()  # Dummy plot
p2 = ggplot(list1, aes(disp,hp)) + geom_point()  # Dummy plot
plots <- arrangeGrob(p1, p2,nrow=2)

table <- tableGrob(list1)
grid.arrange(plots, table)

I suspect this behaviour is due to the tableGrob, but I couldn't find any answer treating this issue.

Thanks in advance!


回答1:


grid.arrange() by default allocates equal space for each cell. If you want a tight fit around a specific grob, you should query its size, and pass it explicitly,

library(grid)
th <- sum(table$heights) # note: grobHeights.gtable is inaccurate
grid.arrange(plots, table, heights = unit.c(unit(1, "null"), th))




回答2:


I actually found the parameter ruling the spacing between grobs: heights, see line below

grid.arrange(plots, table, heights=c(5,1))


来源:https://stackoverflow.com/questions/32141400/remove-white-space-between-plots-and-table-in-grid-arrange

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!