即使我在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。
3 回答
慕尼黑5688855
TA贡献1848条经验 获得超2个赞
我想知道是否geom_vline(aes(xintercept=as.numeric(x[c(13, 24)])), linetype=4, colour="black")
会更惯用,例如使用aes
代替tmp$
。
- 3 回答
- 0 关注
- 1306 浏览
添加回答
举报
0/150
提交
取消