将秒矢量转换为日期(反向ISOdatetime)

时间:2017-02-21 21:36:46

标签: r

我这样做是为了用秒来做一些操作:

x <- as.numeric(unclass(ISOdatetime(year=2017,
                                month=2,
                                day=9,
                                hour=8,
                                min=38,
                                sec=39,
                                tz="Greenwich")))

x
[1] 1486629519

现在,我想扭转它。也就是说,从1486629519年,月,日,小时,分钟和秒获取单独的对象。

当然,我不只是处理一个数量,而是使用大秒的矢量。

1 个答案:

答案 0 :(得分:3)

您可以使用 # Uncomment this line to define a global platform for your project platform :ios, '8.0' def core_pods pod 'RestKit', '0.26.0' pod 'MBProgressHUD', '0.9' pod 'MHVideoPhotoGallery', '1.6' pod 'FLKAutoLayout', '1.0.0' pod 'IGListKit', '~> 2.0.0' end abstract_target 'core' do core_pods target 'Target1' target 'Target2' target 'Target3' target 'Target4' target 'Target5' target 'Target6' end

.POSIXct

如果您想轻松提取组件,可以转换为R> .POSIXct(1486629519, tz="GMT") [1] "2017-02-09 08:38:39 GMT"

POSIXlt