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
Recreation:
In [2]: paste In [357]: df = DataFrame({'A' : ['foo', 'bar', 'foo', 'bar', .....: 'foo', 'bar', 'foo', 'foo'], .....: 'B' : ['one', 'one', 'two', 'three', .....: 'two', 'two', 'one', 'three'], .....: 'C' : randn(8), 'D' : randn(8)}) ## -- End pasted text -- In [3]: grouped = df.groupby(['A', 'B'], as_index=False) In [4]: x = grouped['C'].agg({ 'Q' : np.sum})
The text was updated successfully, but these errors were encountered:
aca268f
BUG: add test case for integer index failure re: #819
0a02156
I see you fixed, tyvm
Sorry, something went wrong.
adamklein
No branches or pull requests
Recreation:
The text was updated successfully, but these errors were encountered: