We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is not necessarily a bug, but a change in behavior that could not find reported elsewhere.
import pandas as pd,datetime as dt pd.DatetimeIndex(freq=pd.tseries.offsets.DateOffset(months=6),end=dt.date(2016,1,1), closed='right',periods=3)
In version 0.17.1 you get
DatetimeIndex(['2015-07-01', '2016-01-01'], dtype='datetime64[ns]', freq='<DateOffset: kwds={'months': 6}>')
however, in version 0.18.1 you get
DatetimeIndex(['2015-01-01', '2015-07-01', '2016-01-01'], dtype='datetime64[ns]', freq='<DateOffset: kwds={'months': 6}>')
The new behavior seems more intuitive. Is this change documented anywhere? Thanks!
The text was updated successfully, but these errors were encountered:
reported / fixed here: #12684
Sorry, something went wrong.
No branches or pull requests
This is not necessarily a bug, but a change in behavior that could not find reported elsewhere.
In version 0.17.1 you get
however, in version 0.18.1 you get
The new behavior seems more intuitive. Is this change documented anywhere? Thanks!
The text was updated successfully, but these errors were encountered: