ggplot2で複数のプロットをまとめて表示する方法あれこれ #R - Qiita

プロットの準備library(ggplot2)p1 <- qplot(mpg, wt, data = mtcars, colour = cyl)p2 <- qplot(mpg, data = …