带有数学表达式的ggplot2 facet_wrap

use*_*424 3 math r ggplot2 facet-wrap

使用facet_wrap(),我想用数学表达式标记每个单独的图:

library(ggplot2)

x       <- rnorm(100, 50, 10)
y       <- rnorm(100, 50, 10)
grp     <- rep(c("a", "b", "c", "d"), each=25)
test.df <- data.frame(grp, x, y)
mean.df <- aggregate(test.df[c("x", "y")], test.df["grp"], mean)

p <- ggplot(test.df) +
     geom_point(aes(x=x, y=y, col=grp)) + 
     facet_wrap(~ grp) +
     geom_text(data=mean.df, aes(x=x, y=y, label=paste("xbar=", round(x,1))))
p
Run Code Online (Sandbox Code Playgroud)

我想要\ bar(x)而不是xbar.我尝试了表达式(),但我得到:"不能强制类""表达式""到data.frame".

Jul*_*ora 5

运用

geom_text(data = mean.df, parse = TRUE,
          aes(x = x, y = y, label = paste("bar(x) ==", round(x, 1))))
Run Code Online (Sandbox Code Playgroud)

帮助.

在此输入图像描述