如何在Rtable的header中写上标?
How to write a superscript in the header of an R table?
我正在尝试将上标添加到 table 的 header 中。 table 稍后将用作条形图的标签。因此,我想缩写一些 table 标题,并在后面的图例中解释这些缩写。
我用 provided earlier by Sathish
# libraries
library(gridExtra) # for cool table
library(grid) # for cool table
# create example
df <- data.frame( a = 1:6, b = rep( letters[1:3], each = 2 ) )
# Create plotmath superscript strings
df[1,1] = paste0(df[1,1],"^",1) # i unsuccessfully tried to change the example
colnames(df)[1] <- expression('Title'^2) # here another unsuccessful try
# Define theme to parse plotmath expressions
tt = ttheme_default(core=list(fg_params=list(parse=TRUE)))
tg_df <- tableGrob(d = df, theme=tt)
grid.newpage()
grid.draw(tg_df)
这给了我
感谢您的帮助。
tableGrob vignette 中有一个这样的例子。只需确保也解析列 headers
tt <- ttheme_default(
core = list(fg_params = list(parse=TRUE)),
colhead = list(fg_params = list(parse=TRUE))
)
tg_df <- tableGrob(d = df, theme=tt)
grid.newpage()
grid.draw(tg_df)
我正在尝试将上标添加到 table 的 header 中。 table 稍后将用作条形图的标签。因此,我想缩写一些 table 标题,并在后面的图例中解释这些缩写。
我用
# libraries
library(gridExtra) # for cool table
library(grid) # for cool table
# create example
df <- data.frame( a = 1:6, b = rep( letters[1:3], each = 2 ) )
# Create plotmath superscript strings
df[1,1] = paste0(df[1,1],"^",1) # i unsuccessfully tried to change the example
colnames(df)[1] <- expression('Title'^2) # here another unsuccessful try
# Define theme to parse plotmath expressions
tt = ttheme_default(core=list(fg_params=list(parse=TRUE)))
tg_df <- tableGrob(d = df, theme=tt)
grid.newpage()
grid.draw(tg_df)
这给了我
感谢您的帮助。
tableGrob vignette 中有一个这样的例子。只需确保也解析列 headers
tt <- ttheme_default(
core = list(fg_params = list(parse=TRUE)),
colhead = list(fg_params = list(parse=TRUE))
)
tg_df <- tableGrob(d = df, theme=tt)
grid.newpage()
grid.draw(tg_df)