Pandas: Fixed typo (#4388)

* Fixed typo in pandas.json

There was a trailing ")" on line 95 as reported in issue #4382.

* Fixed typo

* Fixed a typo #2
master
CedArctic 2017-07-27 17:53:31 +03:00 committed by Sahil Dua
parent 54e02a8507
commit 3cd04671c6
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@
}],
"Aggregate": [{
"val": "Spliting the data into groups and apply fucntions to each groups indivdually",
"key": "[df.groupby('column1'.sum())] [df.groupby(\\['column1','column2'\\]).count()]"
"key": "[df.groupby('column1').sum()] [df.groupby(\\['column1','column2'\\]).count()]"
}, {
"val": "Pivot table helps to genrate data structure. it has three components index, columns and values",
"key": "pd.pivot_table(df,values='column1',index=['column2','column3'],columns=['column4'])"