我尝试在绘图中使用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)
1条答案
按热度按时间kokeuurv1#
我知道这个问题是5岁,但我刚刚遇到了同样的问题,虽然我还没有弄清楚你的具体情况下,使用
对我很有效。