增加 tableGrob 列标题大小和单元格大小
Increase tableGrob column title size and cell size
有没有办法增加tableGrob
项中列名的单元格?
library(grid)
d <- head(iris, 3)
g <- tableGrob(d)
grid.newpage()
grid.draw(g)
默认值:
我想要达到的效果(这是在 photoshop 中完成的):
非常感谢任何帮助。
您可以通过更改 theme
中 colhead
的 padding
来实现。
例如
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()
有没有办法增加tableGrob
项中列名的单元格?
library(grid)
d <- head(iris, 3)
g <- tableGrob(d)
grid.newpage()
grid.draw(g)
默认值:
我想要达到的效果(这是在 photoshop 中完成的):
非常感谢任何帮助。
您可以通过更改 theme
中 colhead
的 padding
来实现。
例如
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()