ggplot2一页多图排版的简便方法

更好的阅读体验>>

要想在同一页面上排列多个ggplot2图形,基本的R函数par()layout()是无效的。解决方案之一是使用 gridExtra包中的一些函数来排版多个图形:

  • grid.arrange(),arrangeGrob()函数可以用来在同一页面排版多个图形;
  • marrangeGrob()函数可以用于在多个页面排版多个图形。

但是,这几个函数并不能按照图形轴线排列整齐,只能是按图形原样依次排列(如下图所示)。如果想多个图按照轴线对齐排列,可以使用cowplot包中的plot_grid()函数。但是,cowplot 包并不包含在多个页面排列多个图形的功能。因此,解决方案就是使用ggpubr包中的ggarrange()函数来实现该功能,此外,该函数还可以为多个图形创建统一的图例。
下面将介绍如何使用 ggpubr, cowplotgridExtra包在同一页面和多个页面上排列多个图形以及如何输出图形到文件中。

ggpubr包的安装可以参考这篇文章-->>ggpubr:快速绘制用于发表的图形

加载数据

数据:ToothGrowth 和mtcars数据集。

# ToothGrowth
data("ToothGrowth")
head(ToothGrowth)

##    len supp dose
## 1  4.2   VC  0.5
## 2 11.5   VC  0.5
## 3  7.3   VC  0.5
## 4  5.8   VC  0.5
## 5  6.4   VC  0.5
## 6 10.0   VC  0.5
# mtcars 
data("mtcars")
mtcars$name <- rownames(mtcars)
mtcars$cyl <- as.factor(mtcars$cyl)
head(mtcars[, c("name", "wt", "mpg", "cyl")])

##                                name   wt  mpg cyl
## Mazda RX4                 Mazda RX4 2.62 21.0   6
## Mazda RX4 Wag         Mazda RX4 Wag 2.88 21.0   6
## Datsun 710               Datsun 710 2.32 22.8   4
## Hornet 4 Drive       Hornet 4 Drive 3.21 21.4   6
## Hornet Sportabout Hornet Sportabout 3.44 18.7   8
## Valiant                     Valiant 3.46 18.1   6

绘制图形

绘制4个不同的图形:

  • 使用ToothGrowth 数据集绘制一个箱线图和点图;
  • 使用mtcars数据集绘制一个条形图和散点图;

绘制箱线图和点图:

# Box plot (bp)
bxp <- ggboxplot(ToothGrowth, x = "dose", y = "len",
                 color = "dose", palette = "jco")
bxp
# Dot plot (dp)
dp <- ggdotplot(ToothGrowth, x = "dose", y = "len",
                 color = "dose", palette = "jco", binwidth = 1)
dp

绘制条形图和散点图:

# Bar plot (bp)
bp <- ggbarplot(mtcars, x = "name", y = "mpg",
          fill = "cyl",               # 根据cyl类型填充颜色
          color = "white",            # 将条形边框颜色设为白色
          palette = "jco",            # jco 调色板
          sort.val = "asc",           # 按升序排序
          sort.by.groups = TRUE,      # 分组排序
          x.text.angle = 90           # 垂直旋转x轴文本
          )
bp + font("x.text", size = 8)
# Scatter plots (sp)
sp <- ggscatter(mtcars, x = "wt", y = "mpg",
                add = "reg.line",               # 添加回归线
                conf.int = TRUE,                # 添加置信区间
                color = "cyl", palette = "jco", # 根据cyl填充颜色
                shape = "cyl"                   # 根据cyl类型设置点形状
                )+
  stat_cor(aes(color = cyl), label.x = 3)       # 添加相关系数
sp

排版多个图形

使用ggpubr包中的ggarrange()函数来排版多个图形:

ggarrange(bxp, dp, bp + rremove("x.text"), 
          labels = c("A", "B", "C"),
          ncol = 2, nrow = 2)

或者,也可以使用cowplot包中的plot_grid()函数:

library("cowplot")
plot_grid(bxp, dp, bp + rremove("x.text"), 
          labels = c("A", "B", "C"),
          ncol = 2, nrow = 2)

或者,也可以使用gridExtra包中的grid.arrange() 函数:

library("gridExtra")
grid.arrange(bxp, dp, bp + rremove("x.text"), 
             ncol = 2, nrow = 2)

注释排版的图形

使用 annotate_figure()函数:

figure <- ggarrange(sp, bp + font("x.text", size = 10),
                    ncol = 1, nrow = 2)
annotate_figure(figure,
                top = text_grob("Visualizing mpg", color = "red", face = "bold", size = 14),
                bottom = text_grob("Data source: \n mtcars data set", color = "blue",
                                   hjust = 1, x = 1, face = "italic", size = 10),
                left = text_grob("Figure arranged using ggpubr", color = "green", rot = 90),
                right = "I'm done, thanks :-)!",
                fig.lab = "Figure 1", fig.lab.face = "bold"
                )

对齐绘图区

例如,当需要将风险表放在生存曲线下方时,便需要将两个图形的绘图区对齐。

# 拟合生存曲线
install.packages("survminer")
library(survival)
fit <- survfit( Surv(time, status) ~ adhere, data = colon )
# 绘制生存曲线
library(survminer)
ggsurv <- ggsurvplot(fit, data = colon, 
                     palette = "jco",                              # jco palette
                     pval = TRUE, pval.coord = c(500, 0.4),        # Add p-value
                     risk.table = TRUE                            # Add risk table
                     )
names(ggsurv)

ggsurv 是一个包含以下两个部分的列表:

  • plot:生存曲线
  • table:风险表图

绘制生存曲线和风险表:

ggarrange(ggsurv$plot, ggsurv$table, heights = c(2, 1),
          ncol = 1, nrow = 2)

对齐纵坐标轴:

ggarrange(ggsurv$plot, ggsurv$table, heights = c(2, 1),
          ncol = 1, nrow = 2, align = "v")

更改图形的行列跨度

使用ggpubr包

使用嵌套的ggarrange() 函数:

ggarrange(sp,                                                 # 第一行为散点图
          ggarrange(bxp, dp, ncol = 2, labels = c("B", "C")), # 第二行为箱线图和点图
          nrow = 2, 
          labels = "A"                                        # 散点图的标签
          ) 

使用cowplot包

使用函数ggdraw() + draw_plot() + draw_plot_label()可以将图形放置在特定位置。
ggdraw()函数创建一个空画布:

ggdraw()

画布中的坐标位置:

画布中的坐标位置

draw_plot(),将图形放置在画布的某个位置:

draw_plot(plot, x = 0, y = 0, width = 1, height = 1)
  • plot:ggplot2图形或gtable
  • x, y: 图形要放置的位置
  • width, height: 图形的宽度和高度

draw_plot_label(),在图的左上角添加图标签:

draw_plot_label(label, x = 0, y = 1, size = 16, ...)
  • label: 要绘制的标签向量
  • x, y: 标签的位置
  • size: 标签字体大小

排版多个图形:

library("cowplot")
ggdraw() +
  draw_plot(bxp, x = 0, y = .5, width = .5, height = .5) +
  draw_plot(dp, x = .5, y = .5, width = .5, height = .5) +
  draw_plot(bp, x = 0, y = 0, width = 1, height = 0.5) +
  draw_plot_label(label = c("A", "B", "C"), size = 15,
                  x = c(0, 0.5, 0), y = c(1, 1, 0.5))

使用gridExtra 包

使用arrangeGrop()函数可以修改图形的行列跨度:

library("gridExtra")
grid.arrange(sp,                             # 第一行为跨两列的图形
             arrangeGrob(bxp, dp, ncol = 2), # 第二行为两个图形
             nrow = 2)                       # 行数


也可以使用函数grid.arrange()中的参数layout_matrix来创建复杂的布局:

grid.arrange(bp,                                    # 跨两列的图形
             bxp, sp,                               # 箱线图和散点图
             ncol = 2, nrow = 2, 
             layout_matrix = rbind(c(1,1), c(2,3)))


使用cowplot包中的draw_plot_label()函数注释图形:

library("gridExtra")
library("cowplot")
# 排版图形
# 生成 gtable (gt)
gt <- arrangeGrob(bp,                               # 跨两列的条形图
             bxp, sp,                               # 箱线图和散点图
             ncol = 2, nrow = 2, 
             layout_matrix = rbind(c(1,1), c(2,3)))
# Add labels to the arranged plots
p <- as_ggplot(gt) +                                # 将gt转换为ggplot
  draw_plot_label(label = c("A", "B", "C"), size = 15,
                  x = c(0, 0, 0.5), y = c(1, 0.5, 0.5)) # 添加标签
p

函数arrangeGrob()grid.arrange()的主要区别在于grid.arrange()会自动输出排版好的图形。如果要对图形进行注释,最好使用arrangeGrob()

使用grid 包

可以使用grid 包中的grid.layout()函数来创建复杂的布局。另外,它还提供了函数viewport()来定义布局上的区域或视图。函数print()用于将图放置在指定区域中。
一般步骤如下:

  1. 绘制图形:p1, p2, p3, ...
  2. 使用grid.newpage()函数移至网格布局上的新页面
  3. 创建一个2 x 2的布局
  4. 定义网格视图
  5. 将图形输出到视图上
library(grid)
# 转移至新页面
grid.newpage()
# 创建3行2列的布局
pushViewport(viewport(layout = grid.layout(nrow = 3, ncol = 2)))
# 用于在布局上定义区域的帮助函数
define_region <- function(row, col){
  viewport(layout.pos.row = row, layout.pos.col = col)
} 
# 排版图形
print(sp, vp = define_region(row = 1, col = 1:2))   # 跨两列
print(bxp, vp = define_region(row = 2, col = 1))
print(dp, vp = define_region(row = 2, col = 2))
print(bp + rremove("x.text"), vp = define_region(row = 3, col = 1:2))

通用图例

要将通用图例放在组合图的边缘,可以将ggarrange()函数与以下参数一起使用:

  • common.legend = TRUE: 将通用图例放在页边
  • legend: 指定图例位置
ggarrange(bxp, dp, labels = c("A", "B"),
          common.legend = TRUE, legend = "bottom")

具有边际密度图的散点图

# 根据 "Species"类型着色的散点图
sp <- ggscatter(iris, x = "Sepal.Length", y = "Sepal.Width",
                color = "Species", palette = "jco",
                size = 3, alpha = 0.6)+
  border()                                         
# 绘制x和y的边际密度图
xplot <- ggdensity(iris, "Sepal.Length", fill = "Species",
                   palette = "jco")
yplot <- ggdensity(iris, "Sepal.Width", fill = "Species", 
                   palette = "jco")+
  rotate()
# 对边际密度图使用clean主题
yplot <- yplot + clean_theme() 
xplot <- xplot + clean_theme()
# 图形排版
ggarrange(xplot, NULL, sp, yplot, 
          ncol = 2, nrow = 2,  align = "hv", 
          widths = c(2, 1), heights = c(1, 2),
          common.legend = TRUE)

混排表格,文字和图形

下面将展示如何使用iris 数据集在图表旁边添加文本和表格。
首先绘制下面几个图形:

  1. 变量“ Sepal.Length”的密度图。R函数:ggdensity()
  2. Sepal.Length变量的统计表。R函数:desc_statby()ggtexttable()
  3. 文本。R函数:ggparagraph()

最后使用ggarrange()函数进行排版。

# Density plot of "Sepal.Length"
density.p <- ggdensity(iris, x = "Sepal.Length", 
                       fill = "Species", palette = "jco")
# Draw the summary table of Sepal.Length
# Compute descriptive statistics by groups
stable <- desc_statby(iris, measure.var = "Sepal.Length",
                      grps = "Species")
stable <- stable[, c("Species", "length", "mean", "sd")]
# Summary table plot, medium orange theme
stable.p <- ggtexttable(stable, rows = NULL, 
                        theme = ttheme("mOrange"))
# Draw text
text <- paste("iris data set gives the measurements in cm",
              "of the variables sepal length and width",
              "and petal length and width, respectively,",
              "for 50 flowers from each of 3 species of iris.",
             "The species are Iris setosa, versicolor, and virginica.", sep = " ")
text.p <- ggparagraph(text = text, face = "italic", size = 11, color = "black")
# Arrange the plots on the same page
ggarrange(density.p, stable.p, text.p, 
          ncol = 1, nrow = 3,
          heights = c(1, 0.5, 0.3))

在ggplot图中插入图形元素

ggplot2中的annotation_custom()函数可用于在ggplot的绘图区域内添加表,图形或其他基于网格的元素。其基本格式为:

annotation_custom(grob, xmin, xmax, ymin, ymax)
  • grob: 要插入的外部图形元素
  • xmin, xmax : 数据坐标中的水平位置
  • ymin, ymax : 数据坐标中的垂直位置

将表格插入ggplot图中

density.p + annotation_custom(ggplotGrob(stable.p),
                              xmin = 5.5, ymin = 0.7,
                              xmax = 8)

将箱线图插入ggplot图中

# Scatter plot colored by groups ("Species")
sp <- ggscatter(iris, x = "Sepal.Length", y = "Sepal.Width",
                color = "Species", palette = "jco",
                size = 3, alpha = 0.6)
# Create box plots of x/y variables
# Box plot of the x variable
xbp <- ggboxplot(iris$Sepal.Length, width = 0.3, fill = "lightgray") +
  rotate() +
  theme_transparent()
# Box plot of the y variable
ybp <- ggboxplot(iris$Sepal.Width, width = 0.3, fill = "lightgray") +
  theme_transparent()
# Create the external graphical objects
# called a "grop" in Grid terminology
xbp_grob <- ggplotGrob(xbp)
ybp_grob <- ggplotGrob(ybp)
# Place box plots inside the scatter plot
xmin <- min(iris$Sepal.Length); xmax <- max(iris$Sepal.Length)
ymin <- min(iris$Sepal.Width); ymax <- max(iris$Sepal.Width)
yoffset <- (1/15)*ymax; xoffset <- (1/15)*xmax
# Insert xbp_grob inside the scatter plot
sp + annotation_custom(grob = xbp_grob, xmin = xmin, xmax = xmax, 
                       ymin = ymin-yoffset, ymax = ymin+yoffset) +
  # Insert ybp_grob inside the scatter plot
  annotation_custom(grob = ybp_grob,
                       xmin = xmin-xoffset, xmax = xmin+xoffset, 
                       ymin = ymin, ymax = ymax)

将背景图插入ggplot图中

导入背景图。根据背景图的格式,可以使用jpeg 包中的函数readJPEG()或png包中的函数readPNG()

# 导入背景图
install.packages("png")
library(png)
img.file <- download.file("http://www.sthda.com/english/sthda-upload/images/ggpubr/ggpubr.png", destfile ="ggpubr.png", mode = 'wb')
img <- png::readPNG('ggpubr.png')

将ggplot与背景图合并:

library(ggplot2)
library(ggpubr)
ggplot(iris, aes(Species, Sepal.Length))+
  background_image(img)+
  geom_boxplot(aes(fill = Species), color = "white")+
  fill_palette("jco")

使用alpha参数修改箱线图的透明度:

library(ggplot2)
library(ggpubr)
ggplot(iris, aes(Species, Sepal.Length))+
  background_image(img)+
  geom_boxplot(aes(fill = Species), color = "white", alpha = 0.5)+
  fill_palette("jco")

将法国地图作为另一个图形的背景图:

mypngfile <- download.file("https://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/France_Flag_Map.svg/612px-France_Flag_Map.svg.png", 
                           destfile = "france.png", mode = 'wb') 
img <- png::readPNG('france.png') 
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)) +
  background_image(img)+
  geom_point(aes(color = Species), alpha = 0.6, size = 5)+
  color_palette("jco")+
  theme(legend.position = "top")

多页图形的排版

如果图形数量很多,就需要将其放置在多个页面上了,而ggarrange()函数便可以实现这种功能。当指定了nrowncol之后,ggarrange()函数便可以自动计算排版所有图形所需的页数。

# 两页的列表,每页两个图
multi.page <- ggarrange(bxp, dp, bp, sp,
                        nrow = 1, ncol = 2)
# 查看每个页面
multi.page[[1]] 
multi.page[[2]] 

也可以使用ggexport()函数到处为文件:

ggexport(multi.page, filename = "multi.page.ggplot2.pdf")

PDF file: multi.page.ggplot2.pdf
也可以使用marrangeGrob()函数实现多页输出。

library(gridExtra)
res <- marrangeGrob(list(bxp, dp, bp, sp), nrow = 1, ncol = 2)
# 输出为pdf文件
ggexport(res, filename = "multi.page.ggplot2.pdf")
res

使用ggarrange()的嵌套布局

p1 <- ggarrange(sp, bp + font("x.text", size = 9),
                ncol = 1, nrow = 2)
p2 <- ggarrange(density.p, stable.p, text.p, 
                ncol = 1, nrow = 3,
                heights = c(1, 0.5, 0.3))
ggarrange(p1, p2, ncol = 2, nrow = 1)

导出图形

使用函数ggexport()
首先绘制四个图形:

plots <- ggboxplot(iris, x = "Species",
                   y = c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width"),
                   color = "Species", palette = "jco"
                   )
plots[[1]]  
plots[[2]] 

然后,可以将单个图形导出到文件(pdf,eps或png),导出时还可以进行排版。
将单个图导出到pdf文件(每页一个图):

ggexport(plotlist = plots, filename = "test.pdf")

排版并导出:

ggexport(plotlist = plots, filename = "test.pdf",
         nrow = 2, ncol = 1)

参考

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,293评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,604评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,958评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,729评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,719评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,630评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,000评论 3 397
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,665评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,909评论 1 299
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,646评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,726评论 1 330
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,400评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,986评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,959评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,197评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,996评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,481评论 2 342

推荐阅读更多精彩内容