如何适应非常宽的grid.table或tableGrob以适应pdf页面?

时间:2014-03-03 03:22:20

标签: r pdf gridextra

我有一个相当宽的表(页面宽度的4/3),我正在尝试使用grid.table或grid.arrange(通过tableGrob)打印成pdf文件。该表超出页面边界并被剪裁。有没有办法强制grid.table / grid.arrange将表缩放到打印区域?

3 个答案:

答案 0 :(得分:4)

有一种方法,但是当文本太宽而不适合某些单元格时,不清楚会发生什么。

一种选择是手动设置宽度,

library(grid)
library(gridExtra)
g1 <- g2 <- tableGrob(head(iris, 10), rows=NULL)
g2$widths <- unit(rep(1/ncol(g2), ncol(g2)), "npc")
grid.newpage()
gt = arrangeGrob(textGrob("page 1"), textGrob("page 2"), 
                 rectGrob(gp=gpar(fill="grey98")), 
                 rectGrob(gp=gpar(fill="grey98")), 
                 nullGrob(),  
                 layout_matrix=rbind(c(1,5,2), c(3,5,4)),
                 widths = unit(c(1,5,1),c("null", "cm", "null")), 
                 heights = unit(c(1, 1),c("line", "null")),
                 vp = viewport(width=0.9, height=0.9))
tc = list(g1, g2)
gt <- gtable::gtable_add_grob(gt, tc, l=c(1,3), t=2, 
                               name="newgrobs")

grid.draw(gt)

但当然使用固定的字体大小意味着可能会删除某些文字。

enter image description here

可能更好的选择是引入换行符,和/或(略微)减小字体大小。

g3 <- tableGrob(head(iris, 10), theme = ttheme_default(7),
                rows=NULL, cols=gsub("\\.", "\\\n",names(iris)))
g3$widths <- unit(rep(1/ncol(g2), ncol(g2)), "npc")

grid.newpage()

gt = arrangeGrob(textGrob("page 1"), textGrob("page 2"), 
                 rectGrob(gp=gpar(fill="grey98")), 
                 rectGrob(gp=gpar(fill="grey98")), 
                 nullGrob(),  
                 layout_matrix=rbind(c(1,5,2), c(3,5,4)),
                 widths = unit(c(1,1,1),c("null", "line", "null")), 
                 heights = unit(c(1, 1),c("line", "null")),
                 vp = viewport(width=0.9, height=0.9))
tc = list(g2, g3)
gt <- gtable::gtable_add_grob(gt, tc, l=c(1,3), t=2, 
                              name="newgrobs")

grid.draw(gt)

enter image description here

答案 1 :(得分:0)

我使用字体大小完成了这项工作。不是最好的解决方案(需要人工干预),但也许有人可以提供更优雅的东西。

termTable = tableGrob(terms, h.even.alpha=1, h.odd.alpha=1,  v.even.alpha=0.5, v.odd.alpha=1, core.just='left', rows=c(),
gpar.coretext =gpar(fontsize=8),
gpar.coltext=gpar(fontsize=10, fontface='bold'),
gpar.rowtext=gpar(fontsize=10, fontface='bold')
)

答案 2 :(得分:-1)

使用最新版本的gridExtra,更新rimorob答案的正确格式为:

termTable = tableGrob(terms,theme = ttheme_default(gpar.coretext = gpar(fontsize = 8),gpar.coltext = gpar(fontsize = 10,fontface ='bold'),gpar.rowtext = gpar(fontsize = 10 ,fontface ='bold')))