带上标的ggplot2注释

时间:2012-03-15 15:46:26

标签: r ggplot2

如何在ggplot注释中包含上标?我想显示Rsuperscript2 = somevalue 我尝试在注释中使用parse = TRUE ..它给了我= Rsuperscript2,而不是

lm1 <- lm(dData$RF ~ dData$Exp -1)
lb1 <- paste("R^2 = ", round(summary(lm1)$r.squared,4))
p1 <- ggplot(dData, aes(x=dData$Exp, y=dData$RF)) +
  scale_x_continuous("Experimental") + 
  scale_y_continuous("Predicted") + 
  geom_point() + geom_smooth(method="lm") + 
  annotate("text", x=max(dData$Exp), y=min(dData$RF)+1, label=lb1, 
           hjust=1, size=3, vjust=1)

1 个答案:

答案 0 :(得分:32)

是上标还是等号的问题?切换到表达式中的==,parse=TRUE适用于我。没有你的dData,这是一个虚拟的例子。

lb1 <- paste("R^2 == ", round(runif(1),4))
qplot(1:10, 1:10) + 
  annotate("text", x=2, y=8, label=lb1, parse=TRUE)

enter image description here