我刚遇到问题,我想在时间对象中添加时间,但标准内容(colSums
,sum
,rowSums
)无效
所以,我有
time<-c("00:00:01", "01:02:00", "09:30:01", "14:15:25")
library(chron)
x <- chron(times=time)
x
[1] 00:00:01 01:02:00 09:30:01 14:15:25
我现在如何在x
中添加所有时间?
答案 0 :(得分:4)
sum(x)
适合我
sum(x)
Time in days:
[1] 1.032951