Thomas Lin Pedersen简直是个天才,最近patchwork
动作很大,看到我都准备转投它的怀抱,把旧爱cowplot
给扔了。
我们知道patchwork
一出来,就推出+
号来拼图,最近又搞出了|
和/
两个操作符。让整个拼图看起来很舒服。
先来画几张图:
library(ggplot2)
p1 <- ggplot(mtcars) +
geom_point(aes(mpg, disp)) +
ggtitle('图一')
p2 <- ggplot(mtcars) +
geom_boxplot(aes(gear, disp, group = gear)) +
ggtitle('图二')
p3 <- ggplot(mtcars) +
geom_point(aes(hp, wt, colour = mpg)) +
ggtitle('图三')
p4 <- ggplot(mtcars) +
geom_bar(aes(gear)) +
facet_wrap(~cyl) +
ggtitle('图四')