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
xref #8653
Having a similar issue
idx = date_range('2014-10-08 00:00','2014-10-09 00:00', freq='D', tz='Europe/Berlin') pd.Series(5, idx).resample('MS')
ValueError: Values falls after last bin
While if I remove the tz :
idx = date_range('2014-10-08 00:00','2014-10-09 00:00', freq='D') pd.Series(5, idx).resample('MS')
that works perfectly
version : '0.15.0rc1'
The text was updated successfully, but these errors were encountered:
hmm, that does look buggy. FYI, should should actually past the exception in as well. 'crashed' is not that informative.
Sorry, something went wrong.
How appropriate that #8601 is a time zone issue...
@ischwabacher, hahaha. kudos.
closing as dupe of #5172 for now
No branches or pull requests
xref #8653
Having a similar issue
idx = date_range('2014-10-08 00:00','2014-10-09 00:00', freq='D', tz='Europe/Berlin')
pd.Series(5, idx).resample('MS')
ValueError: Values falls after last bin
While if I remove the tz :
idx = date_range('2014-10-08 00:00','2014-10-09 00:00', freq='D')
pd.Series(5, idx).resample('MS')
that works perfectly
version : '0.15.0rc1'
The text was updated successfully, but these errors were encountered: