与此帖子类似的问题 Adding time to time in R 但有任何具体说明。 说我创建数据框
a=9658
b=9658
e=9658
d=9658
dat=cbind(a,b,e,d)
the result
a b e d
1 9658 9658 9658 9658
我需要创建带有日期的新列
I.E输出
a b e d dateload
9658 9658 9658 9658 01.10.2018 00:00
在sql中,此函数称为getdate()
答案 0 :(得分:1)
Sys.time()
会给你这个。
希望这会有所帮助。