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
version: 0.11.0
with small variation of python for data analysis book:
tips = pd.read_csv("https://github.com/pydata/pydata-book/raw/master/ch08/tips.csv") grouped = tips.groupby(['sex','smoker']) res = grouped.agg({'tip': ['min','max','mean','std'], 'size':'sum'}) #By now, copied from the book, ~page 263-264 #New stuff res["foo"] = res["tip", "max"] * res["tip", "mean"]
The result attached (with missing line. it seems like 'sum' is part of 'foo')
The text was updated successfully, but these errors were encountered:
I believe this was fixed by 261839e. dupe #3547. Already in master, and will be part of the upcoming 0.11.1.
Sorry, something went wrong.
@y-p close this? (as its fixed)
yeah, It's nicer to get an ack from the user who opened the issue, but pretty sure it's fixed.
Sorry, I was not aware that I should ack the fix. Won't happen again :-)
That's grate, Thanks!
No branches or pull requests
version: 0.11.0
with small variation of python for data analysis book:
The result attached (with missing line. it seems like 'sum' is part of 'foo')
The text was updated successfully, but these errors were encountered: