我有一些表示小时的整数,我想将它们转换为日期,然后提取年份和月份。
例如,1620936代表1984-12-01 00:00:00,1620960代表1984-12-02 00:00:00。我想知道如何在R中做到这一点。非常感谢。
Time = c(1620936,1620960,1620984,1621008,1621032,1621056,1621080,1621104)
答案 0 :(得分:2)
toDate <- function(x) as.Date("1800-01-01") + x / 24
dat <- toDate(Time)
sapply(c(year="%Y", month="%m", day="%d"), function(fmt) as.numeric(format(dat, fmt)))
给出这个矩阵:
year month dayt
[1,] 1984 12 1
[2,] 1984 12 2
[3,] 1984 12 3
[4,] 1984 12 4
[5,] 1984 12 5
[6,] 1984 12 6
[7,] 1984 12 7
[8,] 1984 12 8
最后一行可以写成:
with(unclass(as.POSIXlt(dat)), cbind(year = year+1900, month = mon+1, day = mday))
或
library(chron)
do.call("cbind", month.day.year(dat))