我想tableGrob
为gridExtra
.r
library(gridExtra)
tableGrob(df, cols = c("Custom Name", "Custom Name2"),
show.rownames = FALSE, h.even.alpha = 0)
tableGrob(df2, cols = c("Different Name", "Different Name2"),
show.rownames = FALSE, h.even.alpha = 0)
show.rownames = FALSE
请注意,我不想重复h.even.alpha = 0
多次。创建某种类型的主题或模板以避免在不同的调用中重复这些选项的适当方法是什么tableGrob
?我可以使用类似于ggplot2
或我最好的选择的功能来执行此操作吗?