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
related #5202
You can do it but its akward
In [142]: pd.period_range('2011-07','2012-05',freq='M').values.min() Out[142]: 498 In [143]: pd.period_range('2011-07','2012-05',freq='M').values.max() Out[143]: 508 In [146]: pd.period_range(pd.Period(ordinal=498,freq='M'),pd.Period(ordinal=508,freq='M'),freq='M') Out[146]: <class 'pandas.tseries.period.PeriodIndex'> freq: M [2011-07, ..., 2012-05] length: 11
This fails
In [150]: pd.period_range('2011-07','2012-05',freq='M').min() AttributeError: 'PeriodIndex' object has no attribute 'freq'
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
related #5202
You can do it but its akward
This fails
The text was updated successfully, but these errors were encountered: