Created
October 16, 2014 22:20
-
-
Save phobson/794c4e7b1399448645e6 to your computer and use it in GitHub Desktop.
pandas chaining
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( | |
flights.groupby(['year', 'month', 'day']) | |
[['arr_delay', 'dep_delay']] | |
.mean() | |
.query('arr_delay > 30 | dep_delay > 30') | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment