R:如何使用文本框注释ggplot?

时间:2017-05-16 22:22:35

标签: r ggplot2 annotate

我希望添加一个小的白色文本框,在我的ggplot图的正文中添加自定义文本。我要添加的文字是识别我添加到图中的水平线。

  ggplot(cb_emp) +  
  geom_point(aes(x = grossunits, 
                 y = rate, 
                 color = as.factor(outlier))
                 , alpha = 1/4) +
  scale_color_discrete(name  ="Outcome",
                        breaks=c(0, 1),
                        labels=c("Not outlier", "Outlier")) +
  geom_hline(aes(yintercept = meancbrate)) + 
  geom_vline(aes(xintercept = meanac) +
  annotate("text", x = max(grossunits), y = meancbrate, label = "avg rate")  

这是我得到的情节:

enter image description here

这是我想要的情节(或类似的情节):

enter image description here

如果有一种简单的方法可以让我知道。

非常感谢帮助!

1 个答案:

答案 0 :(得分:18)

您只需更改为

即可
annotate("label", x = max(grossunits), y = meancbrate, label = "avg rate") 

将使用geom_label而不是geom_text,因此您会在标签周围找到一个矩形。