我正在尝试使用包 lubridate 计算 R 中的每分钟速率。这是我尝试过的:
library(lubridate)
time <- ms(c("5M 17S", "4M 29S", "5M 0S", "5M 0S", "5M 20S"))
count <- sample(1:20, 5)
count/time
这会引发错误:
Error in count/time : Cannot divide numeric by period
如何计算每分钟的速率?我特别关注使用 lubridate 包的解决方案