如何使用注释在ggplot2中绘制箭头

时间:2013-06-10 20:38:01

标签: r ggplot2

我正在创建一个ggplot图表,我需要在其中添加一些注释。我可以这样做,但文本并没有真正指出我喜欢注释的日期。有没有办法在我喜欢创建注释的地方绘制箭头。

我有这个:

   ggplot(df, aes(Date, CPU)) + geom_point() + 
       annotate("text", x = as.POSIXct(c("2013-03-11 23:00:00")), 
                y = 90, label = "problem 1", angle=90, size=5, 
                colour='black', face="bold")

1 个答案:

答案 0 :(得分:8)

所以任何人都可能有相同的问题或疑问,这就是我所做的:

library(ggplot2)
library(grid)

ggplot(df, aes(Date, CPU)) + geom_point() + 
       annotate("text", x = as.POSIXct(c("2013-03-11 23:00:00")), 
                y = 90, label = "problem 1", angle=90, size=5, 
                colour='black', face="bold")
             +    geom_segment(aes(x = as.POSIXct(c("2013-03-11 09:00:00")), y = -30, xend = as.POSIXct(c("2013-03-11 09:00:00")), yend = 0), colour='#CC00FF', size=1,arrow = arrow(length = unit(0.5, "cm")))