Created
December 18, 2015 12:37
-
-
Save anirudhjayaraman/38601c9cfe678e52fa0b to your computer and use it in GitHub Desktop.
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
# Print out all flights in hflights that traveled 3000 or more miles | |
filter(hflights, Distance > 3000) | |
# All flights flown by one of JetBlue, Southwest, or Delta | |
filter(hflights, UniqueCarrier %in% c('JetBlue', 'Southwest', 'Delta')) | |
# All flights where taxiing took longer than flying | |
filter(hflights, TaxiIn + TaxiOut > AirTime) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment