Lubridate jumps over a month #336
Closed
Labels
Comments
The problem is with the
There should be no negative days in |
This was referenced Sep 29, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Lubridate jumps over the 3ed month here:
as.period(interval(ymd("1985-12-31"),ymd("1986-01-01")))%/%months(1)
as.period(interval(ymd("1985-12-31"),ymd("1986-02-01")))%/%months(1)
as.period(interval(ymd("1985-12-31"),ymd("1986-03-01")))%/%months(1)
as.period(interval(ymd("1985-12-31"),ymd("1986-04-01")))%/%months(1)
as.period(interval(ymd("1985-12-31"),ymd("1986-05-01")))%/%months(1)
This seems to be a bug, or at least an unexpected calculation.
The text was updated successfully, but these errors were encountered: