I noticed some inconsistent date arithmetic behavior:
t1 <- Sys.time()
t2 <- t1 + dhours(1)
(t2 - t1) / dseconds(60) > 1 # TRUE
(t2 - t1) > dseconds(60) # FALSE, but ought to be TRUE or at least give an error
The text was updated successfully, but these errors were encountered:
I noticed some inconsistent date arithmetic behavior:
The text was updated successfully, but these errors were encountered: