gpt4 book ai didi

r - 使用 tableGrob 在表中添加上标

转载 作者:行者123 更新时间:2023-12-01 13:35:27 27 4
gpt4 key购买 nike

如何在表格中添加上标?例如,df 的列 b 会将重复索引指示为上标。

我可以考虑将 b 列的值作为表达式引入,但可能有更好的方法。

数据:

df <- data.frame( a = 1:6, b = rep( letters[1:3], each = 2 ) )

代码:

library( 'gridExtra' )
library( 'grid' )
tg_df <- tableGrob( d = df )
grid.draw( tg_df )

输出:

enter image description here

预期:

enter image description here

最佳答案

您可以通过创建适当的 plotmath 来做到这一点上标字符串并在主题语句中指定 parse=TRUE 以解析表 grob 中的 plotmath 表达式。参见 the vignette获取更多详细信息和示例。

# Create plotmath superscript strings
df$b = paste0(df$b,"^",rep(1:2,3))

# Define theme to parse plotmath expressions
tt = ttheme_default(core=list(fg_params=list(parse=TRUE)))

tg_df <- tableGrob(d = df, theme=tt)
grid.draw(tg_df)

enter image description here

关于r - 使用 tableGrob 在表中添加上标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43714570/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com