我從我的Garmin有一些GPS數據我想繪製時間縮放圖。我在使用ggplot2的網上找到了一些例子,但是有問題 - 我相信我可能需要重新格式化我的日期時間列,但是無法找到'net並查看ggplot2源代碼。任何幫助非常感謝。ggplot2:時間尺度圖形問題
> library(ggplot2)
> x <- read.csv("tst.csv",header=TRUE,colClasses="character")
> head(x)
counter HeartRateBpm_AVG LastTimeStamp
1 1 102.25 9/3/2011 7:32
2 2 138.75 9/3/2011 7:33
3 3 138.75 9/3/2011 7:33
4 4 138.75 9/3/2011 7:33
5 5 138.75 9/3/2011 7:33
6 6 138.75 9/3/2011 7:34
> ggplot(data=x,aes(x=LastTimeStamp,y=HeartRateBpm_AVG)) + scale_x_date(format = "%S") + geom_line()
'dput(head(x,20))'會更好 – Chase