ggplot2 で作成した一連のプロットのグリッド レイアウトを作成したいと考えています。残念ながら、par(mfrow=)
ggplot2 では動作しない基本的なグラフィック関数です。grid.arrange
gridExtra パッケージで使用します。
library(ggplot2)
library(gridExtra)
# Completely fake plotting function.
makePlot = function(a, b) {
dat = data.frame(x=rnorm(a), y=rnorm(a))
p = ggplot(dat, aes(x=x, y=y)) +
geom_point(size=b, alpha=1/b) +
opts(title=paste("a = ", a, ", b = ", b, sep="")) +
opts(plot.title=theme_text(size=12))
return(p)
}
plot_list = list() # Create an empty list to hold plots.
for (b in c(1, 3, 6)) { # I switched a and b loops
for (a in seq(100, 900, by=100)) { # to make the final layout neater.
p = makePlot(a, b)
plot_list = c(plot_list, list(p)) # Add new plot to list.
}
}
pdf("mytry1.pdf", width = 14, height = 6)
do.call(grid.arrange, c(plot_list, list(nrow=3, ncol=9, main="Grid of Plots")))
dev.off()
編集:これをもっと簡潔にすることはできますか?
plot_list
をよりコンパクトに作成して pdf に出力できます。mlply
、ggsave
およびを提案してくれた@baptisteに感謝しarrangeGrob
ます。
library(plyr)
plot_list = mlply(expand.grid(a=seq(100, 900, by=100), b=c(1, 3, 6)), makePlot)
ggsave(filename="grid_1.pdf", height=6, width=14,
plot=do.call(arrangeGrob, c(plot_list, nrow=3, main="Grid of Plots")))