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
https://nem-reader.readthedocs.io/en/latest/quickstart.html hourly = df.groupby([(df.index.hour)]).sum()
TypeError: datetime64 type does not support sum operations
Workaround: https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.sum.html hourly = df.groupby([(df.index.hour)]).sum(numeric_only=True)
I'm clueless about dataframes and pandas, so hopefully that is the right answer.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://nem-reader.readthedocs.io/en/latest/quickstart.html
hourly = df.groupby([(df.index.hour)]).sum()
TypeError: datetime64 type does not support sum operations
Workaround:
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.sum.html
hourly = df.groupby([(df.index.hour)]).sum(numeric_only=True)
I'm clueless about dataframes and pandas, so hopefully that is the right answer.
The text was updated successfully, but these errors were encountered: