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
This used to work (cc @craustin):
from pandas import Series s = Series({'T1': 5}) print s.groupby({'T1': 'T2'}).agg(sum)
The text was updated successfully, but these errors were encountered:
BUG: groupby with dict passed had stopped working in some cases, GH #679
e9cfd35
Fixed this. Turns out this bug only was occurring when the dict was the same length as the Series. Glad you caught it
Sorry, something went wrong.
Merge pull request pandas-dev#679 from shashank88/fix_build
4838a75
Fix build by pinning pytest<4.1
No branches or pull requests
This used to work (cc @craustin):
The text was updated successfully, but these errors were encountered: