使用Rmarkdown knitr-HTML中的gridExtra确定一致的数字大小

时间:2015-09-25 10:36:33

标签: html r knitr r-markdown gridextra

我使用gridExtragrid.arrange()函数绘制ggplot2生成的4个数字。整个使用knitr包进行html渲染,使用RMarkdown处理RStudio。

简而言之:

 g1 <- ggplot(); g2 <- ggplot(); g3 <- ggplot(); g4 <- ggplot()
 grid.arrange(g1,g2,g3,g4,ncol=2,nrow=2)

RMarkdown/knitr中,我使用以下选项:

   output: 
   html_document:
   keep_md: true

 ```r,figures, fig.align='center',fig.width=12,fig.height=10```

问题:根据需要绘制了4个数字,但其大小明显不成比例。

经过测试的解决方案:在此question中提出但没有取得多大成功。

编辑:现在提供可重复的示例,带有html输出屏幕上限。

```{r mtcars plots, fig.align='center',fig.width=9,fig.height=7}
   library(datasets)
   library(ggplot2)
   library(gridExtra)
   g1 <- ggplot(mtcars, aes(drat,carb*100)) + geom_point(color="blue") 
   g2 <- ggplot(mtcars, aes(mpg,hp)) + geom_point(color="red")
   g3 <- ggplot(mtcars, aes(qsec,wt)) + geom_point(color="green")
   g4 <- ggplot(mtcars, aes(carb,disp*100)) + geom_point(color="orange")+
         labs(y="This is the lab for 'disp' fairly long until here") 
   grid.arrange(g1,g2,g3,g4,ncol=2,nrow=2,
         top=textGrob("MTCARS: Everything about cars...!",
                      gp=gpar(fontsize=16,font=1)))
   ```

enter image description here

效果比实际数据稍微微妙一些。注意“绿色”和“橙色”图的对齐。

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:3)

您可以使用gtable,

library(gtable)
library(grid)
pl <- lapply(list(g1,g2,g3,g4), ggplotGrob)
g12 <- cbind(pl[[1]], pl[[2]], size="first")
g12$heights <- unit.pmax(pl[[1]][["heights"]], pl[[2]][["heights"]])
g34 <- cbind(pl[[3]], pl[[4]], size="first")
g34$heights <- unit.pmax(pl[[3]][["heights"]], pl[[4]][["heights"]])
g1234 <- rbind(g12, g34, size="first")
g1234$widths <- unit.pmax(g12[["widths"]], g34[["widths"]])
grid.newpage()
grid.draw(g1234)