You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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: