有没有办法在tableGrob
项目中增加列名称的单元格?
library(grid)
d <- head(iris, 3)
g <- tableGrob(d)
grid.newpage()
grid.draw(g)
默认:
非常感谢任何帮助。
答案 0 :(得分:3)
您可以通过更改padding
中colhead
的{{1}}来完成此操作。
例如
theme
要了解您可以更改的内容,您可以在终端中查看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)