4

有没有办法增加tableGrob项目中列名的单元格?

library(grid)
d <- head(iris, 3)
g <- tableGrob(d)
grid.newpage()
grid.draw(g)

默认:

在此处输入图像描述

我想要实现的目标(这是在 Photoshop 中完成的): 在此处输入图像描述

任何帮助深表感谢。

4

1 回答 1

5

您可以通过更改 中的 来做到这padding一点。colheadtheme

例如

thm <- ttheme_default(colhead = 
             # first unit is the wdith, and second the height
             list(padding=unit.c(unit(4, "mm"), unit(10, "mm"))))


tableGrob(d, theme=thm)

要了解您可以更改的内容,您可以ttheme_default()在终端中查看

于 2018-02-22T14:54:33.817 回答