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
Troubleshooting based on tests.indexes.period.test_tools.TestPeriodIndexConversion.test_to_timestamp_pi_combined
tests.indexes.period.test_tools.TestPeriodIndexConversion.test_to_timestamp_pi_combined
idx = PeriodIndex(start='2011', periods=2, freq='1D1H', name='idx') >>> idx + 1 PeriodIndex(['2011-01-02 01:00', '2011-01-03 02:00'], dtype='period[25H]', name=u'idx', freq='25H') >>> idx + idx.freq PeriodIndex(['2011-01-27 01:00', '2011-01-28 02:00'], dtype='period[25H]', name=u'idx', freq='25H')
idx + idx.freq should match idx + 1.
idx + idx.freq
idx + 1
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Troubleshooting based on
tests.indexes.period.test_tools.TestPeriodIndexConversion.test_to_timestamp_pi_combined
idx + idx.freq
should matchidx + 1
.The text was updated successfully, but these errors were encountered: