ggplot添加注释框,其中包含动态值的箭头

时间:2017-05-18 00:08:05

标签: r ggplot2 ggrepel

我正在尝试在绘图中添加注释框(使用ggplot)。我在注释中使用文本geom添加了文本。逻辑应该是 - 每当我们生成图表时,它应该有一个带有最新月份和值的文本框。文本框应使用箭头或线指向图中的相应值。这是我到目前为止所尝试的,

 myplot <-  ggplot(sa_dat1,  aes(x = variable,  y = value )) + 
        theme_minimal() +
        geom_line(linetype = "solid", color = "#0072CE",size=1) +
        geom_smooth(method="loess", se=FALSE , linetype = "dashed", color="black", size = 0.5) + 
        scale_x_date(labels = date_format("%b-%Y"), date_breaks  ="2 month",expand = c(0.005,0)) +
        theme(axis.text.x = element_text(angle = 90, hjust = 1,vjust=0.5)) +
        scale_y_continuous(limits=c(ylimitmin5,ylimitmax5), labels=dollar_format(prefix="$"),
                 breaks  = seq(ylimitmin5, ylimitmax5, by = 10000),
                 expand = c(0,0)) +
        annotate("text", x=floor_date(max(sa_dat1$variable), "month") - months(12), 
           y= max(sa_dat1$value) - 20000, label = paste0("April 2017\n",
paste("$",round(max(sa_dat1$value)))))

这就是我所拥有的, enter image description here

我的目标是,我不知道如何在文本周围添加箭头和文本框。

enter image description here

1 个答案:

答案 0 :(得分:0)

来自上述评论:

  

annotate(geom = "label", ...)代替"text"为您提供一个文本框,您可以使用填充,边框等修改文本。

     

在黑暗中拍摄,未经测试:+annotate("segment", x=floor_date(max(sa_dat1$variable), "month") - months(12), xend = floor_date(max(sa_dat1$variable), "month"), y= max(sa_dat1$value) - 20000, yend= max(sa_dat1$value), arrow = arrow())

最后,您可以使用xy美学的值来调整箭头的开始和结束,就像您已经为标签调整它们一样。也许试试-months(8)-10000