时间总和对象

时间:2012-11-16 12:53:58

标签: r sum chron

我刚遇到问题,我想在时间对象中添加时间,但标准内容(colSumssumrowSums)无效

所以,我有

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中添加所有时间?

1 个答案:

答案 0 :(得分:4)

sum(x)适合我

sum(x)
Time in days:
[1] 1.032951