当我在R中将unix时间戳转换为datetime对象时,为什么会看到差异?
> as.POSIXlt(1268736919,origin="1970-01-01",tz="America/New_York") [1] "2010-03-16 06:55:19 EDT" > as.POSIXct(1268736919,tz="America/New_York") [1] "2010-03-16 11:55:19 EDT"
POSIXlt的结果其实是正确的。
另外,是否有一种方法可以进行转换而不指定原点?
谢谢
帮助页面实际上暗示了一个区别:
原文链接:https://www.f2er.com/bash/387719.htmlValue: ‘as.POSIXct’ and ‘as.POSIXlt’ return an object of the appropriate class. If ‘tz’ was specified,‘as.POSIXlt’ will give an appropriate ‘"tzone"’ attribute.
这个东西很精致 – 我认为有一个隐含的TZ转换发生在as.POSIXct。考虑一下
R> print(as.numeric(as.POSIXct(as.POSIXlt(1268736919,origin="1970-01-01"))),digits=10) [1] 1268736919 R> print(as.numeric(as.POSIXct(1268736919,origin="1970-01-01")),digits=10) [1] 1268758519
第二个(使用asPOSIXct)不返回原始输入。不幸的是,Brian D. Ripley似乎是唯一拥有所有细节的人。
最后,你不能没有起源。但是您可以将使用时代的包装器定义为原始(如这里)或使用2000-01-01或…只要保持一致。