我正在尝试使用ggplot2
绘制多个绘图,并使用grid.arrange()
进行排列。
由于我设法找到某人描述我遇到的确切问题,我引用了link中的问题描述:
我在ggsave()
之后使用grid.arrange()
,即
grid.arrange(sgcir1,sgcir2,sgcir3,ncol=2,nrow=2) ggsave("sgcirNIR.jpg")
我不保存网格图,而是保存最后一个ggplot。有没有
实际保存grid.arrange()
所显示的情节的方法
ggsave()
或类似的东西?
除了使用旧方式
jpeg("sgcirNIR.jpg") grid.arrange(sgcir1,sgcir2,sgcir3,ncol=2,nrow=2) dev.off()
相同的链接提供了以下解决方案:
require(grid)
require(gridExtra)
p <- arrangeGrob(qplot(1,1), textGrob("test"))
grid.draw(p) # interactive device
ggsave("saving.pdf", p) # need to specify what to save explicitly
但是,我无法弄清楚如何使用ggsave()
来保存grid.arrange()
调用的输出,代码来自link:
library(ggplot2)
library(gridExtra)
dsamp <- diamonds[sample(nrow(diamonds), 1000), ]
p1 <- qplot(carat, price, data=dsamp, colour=clarity)
p2 <- qplot(carat, price, data=dsamp, colour=clarity, geom="path")
g_legend<-function(a.gplot){
tmp <- ggplot_gtable(ggplot_build(a.gplot))
leg <- which(sapply(tmp$grobs, function(x) x$name) == "guide-box")
legend <- tmp$grobs[[leg]]
return(legend)}
legend <- g_legend(p1)
lwidth <- sum(legend$width)
## using grid.arrange for convenience
## could also manually push viewports
grid.arrange(arrangeGrob(p1 + theme(legend.position="none"),
p2 + theme(legend.position="none"),
main ="this is a title",
left = "This is my global Y-axis title"), legend,
widths=unit.c(unit(1, "npc") - lwidth, lwidth), nrow=1)
# What code to put here to save output of grid.arrange()?
答案 0 :(得分:125)
grid.arrange
直接在设备上绘制。另一方面,arrangeGrob
不会绘制任何内容,只会返回一个g
,您可以传递给ggsave(file="whatever.pdf", g)
。
它与ggplot对象的工作方式不同,默认情况下,如果没有指定,最后一个图是保存的,那就是ggplot2无形地跟踪最新的情节,我不认为grid.arrange
应该弄乱将此计数器专用于包裹。
答案 1 :(得分:38)
我对babptiste的建议有些问题,但终于得到了它。以下是您应该使用的内容:
# draw your plots
plot1 <- ggplot(...) # this specifies your first plot
plot2 <- ggplot(...) # this specifies your second plot
plot3 <- ggplot(...) # this specifies your third plot
#merge all three plots within one grid (and visualize this)
grid.arrange(plot1, plot2, plot3, nrow=3) #arranges plots within grid
#save
g <- arrangeGrob(plot1, plot2, plot3, nrow=3) #generates g
ggsave(file="whatever.pdf", g) #saves g
这应该很好。
答案 2 :(得分:19)
另一种将grid.arrange保存到pdf文件的简单方法是使用pdf():
pdf("filename.pdf", width = 8, height = 12) # Open a new pdf file
grid.arrange(plot1, plot2, plot3, nrow=3) # Write the grid.arrange in the file
dev.off() # Close the file
它允许在排列中合并除ggplots之外的其他内容,例如表格......
答案 3 :(得分:6)
我认为值得补充一点。 我有上述问题,ggsave产生错误: “情节应该是一个ggplot2情节”
感谢您的回答:Saving a graph with ggsave after using ggplot_build and ggplot_gtable 我对上述代码进行了修改。
# draw your plots
plot1 <- ggplot(...) # this specifies your first plot
plot2 <- ggplot(...) # this specifies your second plot
plot3 <- ggplot(...) # this specifies your third plot
#merge all three plots within one grid (and visualize this)
grid.arrange(plot1, plot2, plot3, nrow=3) #arranges plots within grid
#save
ggsave <- ggplot2::ggsave; body(ggsave) <- body(ggplot2::ggsave)[-2]
上述行需要修复错误
g <- arrangeGrob(plot1, plot2, plot3, nrow=3) #generates g
ggsave(file="whatever.pdf", g) #saves g
现在它对我很有用。
答案 4 :(得分:2)
尝试
ggsave("whatever.png", plot=grid.arrange(plot1, plot2, plot3, nrow=3), device=..., scale = ..., width =..., height = ..., units = "...", dpi = ...)
答案 5 :(得分:1)
另一个简单的解决方案:
在您的grid.arrange()
grid.arrange(plot1, plot2, plot3, nrow=3)
您做一个dev.copy()
dev.copy(pdf,"whatever.pdf")
dev.off()
答案 6 :(得分:0)
您不需要使用rangingGrob,您可以将grid.arrange的结果直接分配给绘图并使用ggsave保存:
p3 <- grid.arrange(p1,p2, nrow = 1)
ggsave("filename.jpg", p3)