如何在 GridExtra 中使用 tableGrob 更改 Table 背景
How to Change Table Background with tableGrob in GridExtra
我的绘图仪背景中有这个网格 table。除了使用主题
我该如何更改背景
cor.t=mydata
tt3 <- ttheme_minimal(
base_size = 8,
core=list(bg_params = list(fill = paste(substr(HeaderFarbe[n+1],
start = 1, stop = 7),"4D",sep=""),
col=HeaderFarbe[n+1]),
fg_params=list(fontface=3)),
colhead=list(fg_params=list(col=HeaderFarbe[n+1], fontface=4L)),
rowhead=list(fg_params=list(col="red", fontface=3L)))
plot(tableGrob(cor.t ,theme=tt3))
如果您使用grid::grid.draw(tableGrob())
(或直接使用grid.table()
),则没有背景。 plot.gtable
,添加灰色背景,仅供调试使用。
我的绘图仪背景中有这个网格 table。除了使用主题
我该如何更改背景cor.t=mydata
tt3 <- ttheme_minimal(
base_size = 8,
core=list(bg_params = list(fill = paste(substr(HeaderFarbe[n+1],
start = 1, stop = 7),"4D",sep=""),
col=HeaderFarbe[n+1]),
fg_params=list(fontface=3)),
colhead=list(fg_params=list(col=HeaderFarbe[n+1], fontface=4L)),
rowhead=list(fg_params=list(col="red", fontface=3L)))
plot(tableGrob(cor.t ,theme=tt3))
如果您使用grid::grid.draw(tableGrob())
(或直接使用grid.table()
),则没有背景。 plot.gtable
,添加灰色背景,仅供调试使用。