我已经创建了一个包含"Date"和precipitaion("sum_precipt")的数据框("precip2")。我已经在ggplot中创建了一个显示特定日期降水量的条形图。现在我想在条形图上方绘制垂直箭头,指向特定日期。
我收到错误消息:'错误:输入无效:date_trans仅适用于类Date的对象'
我很确定日期是上课日期
谢谢
这是我目前掌握的情况:
precip2 %\>%
ggplot(aes(x=Date,y=sum_precip))+
geom_bar(stat="identity",fill="blue")+
theme(
panel.background=element_rect(fill="white"),
axis.line=element_line(colour="black")) +
geom_segment(aes(x= 2017-11-22, y = 60 , xend = 2017-11-22, yend = 30))
我非常确定日期是上课日期,正如我之前在脚本中所写的:
precip2$Datetime\<-as.POSIXct(precip2$Datetime,"%d/%m/%Y %H:%M",tz="UTC")
1条答案
按热度按时间ttp71kqs1#
没有看到
precip2
的格式,我想这应该可以工作。