在R

时间:2018-03-28 08:42:35

标签: r lubridate

我有一个数据集

    id   date        y 
    8  2017-03-03    2
    7  2012-02-01    8

我想在日期中添加数字y。和y是一年的数字:

    id   date         
    8  2019-03-03    
    7  2020-02-01    

我试过这个日期:

tmp <- as.POSIXlt(date)
tmp$year <- tmp$year + y 
date <- format(tmp)
But it's not at all the good value. 

Thank you,

0 个答案:

没有答案