多图保存png

时间:2018-10-25 11:29:30

标签: r plot

我正在尝试将2个图表保存在png文件中。但是它只保存最后一个。这是我的代码。

par(mfrow=c(1,2)) 

png(filename="file.png")
barplot(plot1)           
plot(plot2)
dev.off()

有人有主意吗?

1 个答案:

答案 0 :(得分:1)

png(filename="file.png")
par(mfrow=c(1,2))
barplot(plot1)           
plot(plot2)
dev.off()

交换前两行。这应该起作用。