duckduckgo / zeroclickinfo-goodies

DuckDuckGo Instant Answers based on Perl & JavaScript
https://duckduckhack.com/
Other
976 stars 1.76k forks source link

Pandas Cheat Sheet: Typo in First Aggregate Example #4382

Closed stephenskory closed 7 years ago

stephenskory commented 7 years ago

When searching for "pandas cheatsheet" there is a typo. As the screenshot shows,

df.groupby('column1'.sum())

is missing a ) and should be fixed to:

df.groupby('column1').sum())

screen shot 2017-07-25 at 4 23 35 pm


IA Page: http://duck.co/ia/view/pandas_cheat_sheet Maintainer: @Hitechverma

stephenskory commented 7 years ago

Ergh

df.groupby('column1').sum()

my fixed example in my original message had the trailing ) that the original had as well.

urohit011 commented 7 years ago

I would like to work on this.