如何在ggplot2中的y轴添加文本标签

时间:2016-05-23 03:26:28

标签: r ggplot2 axis-labels

我希望将单个文本标签添加到y轴的指定点(称为y = 1.5)。这将在那里以及常规刻度。

在ggplot2包中有没有好的方法呢?

1 个答案:

答案 0 :(得分:1)

是的!来自ggplot2 documentation

# Add a text annotation
p +
  geom_text() +
  annotate("text", label = "plot mpg vs. wt", x = 2, y = 15, size = 8, colour = "red")

plot http://docs.ggplot2.org/current/geom_text-28.png

你的看起来像+ annotate("text", label = "your text here", x = 2, y = 1.5)