just so anyone might have the same question or query, here is what I did:
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")))
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…