R:as.POSIXct timezone和scale_x_datetime在我的数据集中发布

时间:2016-03-25 19:59:55

标签: r ggplot2 posixct

我花了一些时间试图弄清楚当应用scale_x_datetime时为什么小时刻度被移动了。我已经尝试在创建日期/时间列时给出时区。我在包中使用了ggplot和scale_x_datetime()。小时滴答是错误的,哪个数据点与其日期/时间列中的时间不匹配。

以下是处理我的数据集的一些过程。

  DF$DateTime<-as.POSIXct(DF$timestamp,format="%m/%d/%y %H:%M", tz="America/Toronto")
  DF$Date<-as.Date(DF$DateTime)

  lims <- as.POSIXct(strptime(c("2015-07-21 00:00","2015-07-23 00:00"), format = "%Y-%m-%d %H:%M"), tz="America/Toronto")    

  ggplot(DF) + geom_line(aes(x=DateTime, y=-Diff,group=Date)) + scale_x_datetime(limits =lims, breaks=date_breaks("2 hour"), labels=date_format("%m/%d %H:%M"))

我在这里错过了什么吗?请帮我搞清楚。 非常感谢!

2 个答案:

答案 0 :(得分:11)

函数date_format()采用tz参数,默认设置为"UTC"。因此,您的标签将转换为UTC。要使用时区&#34; America / Toronto&#34;,您可以执行以下操作:

scale_x_datetime(limits = lims, breaks = date_breaks("2 hour"),
    labels = date_format("%m/%d %H:%M", tz = "America/Toronto"))

这个论点是在0.2.5版本中引入的。在更新后,必须更改使用date_format()在除UTC之外的其他时区创建绘图的代码。

答案 1 :(得分:1)

更新ggplot 3+。 scale_x_datetime允许您直接设置x轴时区(使用的语法与以前的答案稍有不同)。现在正确的代码是:

scale_x_datetime(limits = lims, breaks = date_breaks("2 hour"),
                 date_labels = "%m/%d %H:%M",
                 timezone = "America/Toronto")