如何将垂直的geom_vline设置为上课日期的x轴?

即使我在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。


莫回无
浏览 1307回答 3
3回答

慕尼黑5688855

我想知道是否geom_vline(aes(xintercept=as.numeric(x[c(13, 24)])), linetype=4, colour="black")会更惯用,例如使用aes代替tmp$。
打开App,查看更多内容
随时随地看视频慕课网APP