在geom_text中绘制大致相等的图

时间:2012-12-11 21:28:25

标签: r ggplot2

我无法实现如何在插入geom_text的文本之前放置大致相等的符号。这有效:

ggplot(data.frame(x=1:2, y=1:2), aes(x=x,y=y)) + geom_point() +
  geom_text(aes(label="10^10", x=1.5, y=1.5), parse=T)

如果我将%~~%放在文本

之前
ggplot(data.frame(x=1:2, y=1:2), aes(x=x,y=y)) + geom_point() +
  geom_text(aes(label="%~~%10^10", x=1.5, y=1.5), parse=T)

它会返回错误:意外的SPECIAL%~~%

我发现了几个相关的问题,但无法应用给定的建议。我使用包ggplot2_0.9.2.1。还加载了包grDevices。

1 个答案:

答案 0 :(得分:8)

它可以在等式的左侧网站上使用。这也可能是NULL

ggplot(data.frame(x=1:2, y=1:2), aes(x=x,y=y)) + geom_point() +
   geom_text(aes(label="NULL%~~%10^10", x=1.5, y=1.5), parse=T)

enter image description here