Skip to content

Commit e2d2b57

Browse files
committed
Merge pull request jvns#13 from jbalogh/patch-3
Dataframs => Dataframes
2 parents af08f4b + 6832d29 commit e2d2b57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbook/Chapter 4 - Find out on which weekday people bike the most with groupby and aggregate.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@
379379
"source": [
380380
"This turns out to be really easy!\n",
381381
"\n",
382-
"Dataframs have a `.groupby()` method that is similar to SQL groupby, if you're familiar with that. I'm not going to explain more about it right now -- if you want to to know more, [the documentation](http://pandas.pydata.org/pandas-docs/stable/groupby.html) is really good.\n",
382+
"Dataframes have a `.groupby()` method that is similar to SQL groupby, if you're familiar with that. I'm not going to explain more about it right now -- if you want to to know more, [the documentation](http://pandas.pydata.org/pandas-docs/stable/groupby.html) is really good.\n",
383383
"\n",
384384
"In this case, `berri_bikes.groupby('weekday').aggregate(sum)` means \"Group the rows by weekday and then add up all the values with the same weekday\"."
385385
]
@@ -683,4 +683,4 @@
683683
"metadata": {}
684684
}
685685
]
686-
}
686+
}

0 commit comments

Comments
 (0)