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
>>> import pandas as pd >>> pd.__version__ '0.12.0.dev' >>> index = pd.date_range(start='2013-05-31 00:00', end='2013-05-31 23:00', freq='H') >>> series = pd.Series(range(len(index)), index=index) >>> print series.index.summary() DatetimeIndex: 24 entries, 2013-05-31 00:00:00 to 2013-05-31 23:00:00 Freq: H >>> print series['2013-05'].index.summary() DatetimeIndex: 1 entries, 2013-05-31 00:00:00 to 2013-05-31 00:00:00 Freq: H
I would expect the slice to be the same as the original series.
The text was updated successfully, but these errors were encountered:
thanks for the report, fixed and merged in, pls give a try with master....this was bug
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I would expect the slice to be the same as the original series.
The text was updated successfully, but these errors were encountered: