R中的下标ell注解

vlf7wbxs  于 2023-01-18  发布在  其他
关注(0)|答案(1)|浏览(326)

我尝试在绘图中使用ell作为下标,但我得到的仍然是l而不是ell。

library(ggplot2)
ggplot(data.frame(x = c(-7, 21)), aes(x)) +
 stat_function(fun = dnorm, args = list(mean = 5, sd = 3))+
 stat_function(fun = dnorm, args = list(mean = 9, sd = 3)) + 
 theme_void() + theme(legend.position="none") +
 annotate("text", x = 5, y = 0.15,size = 5, label = 
  as.character(expression(paste("f(E | X"["\u2113"], ")" ))) , parse = T) +
 annotate("text", x = 9, y = 0.15,size = 5, label = 
  as.character(expression(paste("f(E | X"[h], ")" ))) , parse = T)
kokeuurv

kokeuurv1#

我知道这个问题是5岁,但我刚刚遇到了同样的问题,虽然我还没有弄清楚你的具体情况下,使用

element_text("\u2113")

对我很有效。

相关问题