即使我在POSIXct和的google组中找到了Hadley的帖子geom_vline,也无法完成。我有一个时间序列,例如1998年,2005年和2010年,我想画一条垂直线。我尝试了ggplotand qplot语法,但仍然看不到任何垂直线,或者在第一个垂直网格处绘制了垂直线,整个系列向右有些奇怪。
gg <- ggplot(data=mydata,aes(y=somevalues,x=datefield,color=category)) +
layer(geom="line")
gg + geom_vline(xintercept=mydata$datefield[120],linetype=4)
# returns just the time series plot I had before,
# interestingly the legend contains dotted vertical lines
我的日期字段格式为“ 1993-07-01”,属于class Date。
慕尼黑5688855