从https://stackoverflow.com/a/13295880我学会了如何安排两个具有对齐情节区域的地块。
我的问题是:如何获得已安排图的对象?
示例:
require(ggplot2)
require(gridExtra)
A <- ggplot(CO2, aes(x=Plant)) + geom_bar() +coord_flip()
B <- ggplot(CO2, aes(x=Type)) + geom_bar() +coord_flip()
gA <- ggplot_gtable(ggplot_build(A))
gB <- ggplot_gtable(ggplot_build(B))
maxWidth = grid::unit.pmax(gA$widths[2:3], gB$widths[2:3])
gA$widths[2:3] <- as.list(maxWidth)
gB$widths[2:3] <- as.list(maxWidth)
## works:
grid.arrange(gA, gB, ncol=1)
## does not work:
theplot <- grid.arrange(gA, gB, ncol=1, plot=FALSE)
答案 0 :(得分:5)
使用函数arrangeGrob()
将两个图保存为对象。
theplot <- arrangeGrob(gA, gB, ncol=1)