Lubridate返回负MM和SS

时间:2017-04-11 03:48:26

标签: r lubridate

在lubridate中执行此基本操作:

library("lubridate")    
seconds_to_period(10 * 3600) + hours(24) - seconds_to_period(19.67 * 3600)

结果:

"15H -40M -12S"

我在期待:

"14H 19M 48S"

这是正常的吗?

1 个答案:

答案 0 :(得分:1)

我们可以在几秒钟内完成数字操作,然后应用seconds_to_period

seconds_to_period((10*3600 + 24*3600) - (19.67 * 3600))
#[1] "14H 19M 48S"