带有数学表达式的ggplot2 facet_wrap

时间:2016-01-27 18:10:02

标签: r math 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

我想要\ bar(x)而不是xbar。我尝试了表达式(),但是我得到了:&#34;不能强迫类&#34;&#34;表达&#34;&#34;到data.frame&#34;。

1 个答案:

答案 0 :(得分:5)

使用

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

帮助。

enter image description here