在lubridate中执行此基本操作:
library("lubridate")
seconds_to_period(10 * 3600) + hours(24) - seconds_to_period(19.67 * 3600)
结果:
"15H -40M -12S"
我在期待:
"14H 19M 48S"
这是正常的吗?
答案 0 :(得分:1)
我们可以在几秒钟内完成数字操作,然后应用seconds_to_period
seconds_to_period((10*3600 + 24*3600) - (19.67 * 3600))
#[1] "14H 19M 48S"