我正在尝试添加标题,geom_hline ()
但我不知道该怎么做。
我试过geom_hline (aes (yintercept = 18, 'Historical serie'), size = 1.5, col =" # ffff00 ")
但它返回一个错误。我拍了“历史系列”,它起作用了,但标题没有出现。
library(tidyr)
library(dplyr)
library(lubridate)
library(ggplot2)
date2<-c('01/01/2000','08/08/2000','16/03/2001','06/09/2001')
name<-c('A','B','A','B')
total<-c(23,25,36,41)
esp<-c(0.363,0.4123,0.09,0.65)
df<-data.frame(date2,name, total, name, esp)%>%
mutate(date3=as.Date(date2, "%d/%m/%Y"))%>%
mutate(year_date=as.Date(trunc(as.POSIXlt(date3), "years")))
ggplot(data=df, aes(x=year_date, y=total, fill=name))+
geom_col(position = "dodge")+
scale_fill_manual(values=c("#08088A","#9F81F7"))+
theme_light()+labs(fill="rain", title ="rain anual", x="Estation", y="total mm")+
theme(axis.text.x = element_text(angle = 90))+
geom_hline(aes(yintercept = 18, 'Historiacal serie'), size=1.5, col="#ffff00")
期待
我希望18
显示该值及其 Historical serie
对黄线的描述。