我正在尝试使用tableGrob
"Kendall's~tau"
最终结果是整个标签是斜体的,而~
和tau
没有被解释:
如何正确指定?
我认为它没有用,但这是我为tableGrob指定的主题:
table_theme <- ttheme_default(
core = list(fg_params=list(fontsize = 6)),
colhead = list(fg_params=list(fontsize = 6, parse=TRUE)),
rowhead = list(fg_params=list(fontsize = 6, parse=TRUE)),
padding = unit(c(2, 3), "mm"))
列名称通过grDevices
中的plotmath进行解释 - 这是在R中生成的数字中指定数学注释的标准方法。
同样,它与如何指定表达式本身无关,但这里是表构造函数:
tableGrob(stats_df,
theme = table_theme,
rows = c("Kendall's~tau"))
这是一个可重复的例子:
library(gridExtra)
library(grid)
data(iris)
table_theme <- ttheme_default(rowhead = list(fg_params=list(parse=TRUE)))
grid.table(head(iris),
rows = c(letters[c(1:4)], "plotmath~works~omega", "Kendall's~tau"),
theme = table_theme)
答案 0 :(得分:2)
这有效:
library(gridExtra)
library(grid)
data(iris)
table_theme <- ttheme_default(rowhead = list(fg_params=list(parse=TRUE)))
grid.table(head(iris),
rows = c(letters[c(1:4)], "plotmath~works~omega", "Kendall's"~tau),
theme = table_theme)
答案 1 :(得分:0)
尝试使用表达式中的反斜杠,例如"Kendall\'s~tau"
。它应该工作。
答案 2 :(得分:0)
我尝试在 ggplot 中使用带有表达式的撇号进行绘图。在我的数据库中在表达式中使用 ' 是无效的,但这有效
expression(paste(u,"'",(t),sep=""))
但是这种“粘贴”也会导致子索引表达式表达式(U[0])的不良行为。因此,将两者结合使用,这个有效
paste(expression(paste("u","'",sep="")),"/U[0]",sep="")
如果有人知道更简单的方法,我会很高兴。
答案 3 :(得分:0)
如果您的撇号被嵌入到一个较长的字符串中,以及像 ~ 这样的特殊符号,这些解决方案将不起作用。我发现唯一可行的方法是使用正则表达式替换。
#This doesn't work
stringWithApostrophe="Matt's and Louise's diner~...and~also Ben's diner~X^2"
qplot(1:10,1:10)+annotate("text",x=2,y=4,label=stringWithApostrophe,parse=T)
错误:“解析错误(text = text[[i]])::1:5:意外的字符串常量”
问题是出现在同一个引用段中的特殊字符,如波浪号和撇号。所以你必须将“Matt's”与“Louise's”和“~”分开。这是执行此操作的代码。
stringWithApostrophe2<-stringr::str_replace_all(pattern = "([^~()*]*'[^~()*']*)",replacement = "\"\\1\"",string=stringWithApostrophe)
qplot(1:10,1:10)+annotate("text",x=2,y=8,hjust=0,label=stringWithApostrophe2,parse=T)
绘图成功。 R 中的 plotmath 正确解析的最终表达式是: ““马特和路易丝的小餐馆”~...还有~“还有本的小餐馆”~X^2"