Skip to content

Instantly share code, notes, and snippets.

@anirudhjayaraman
Created December 18, 2015 12:42
Show Gist options
  • Save anirudhjayaraman/068b64fc48f00cde3c74 to your computer and use it in GitHub Desktop.
Save anirudhjayaraman/068b64fc48f00cde3c74 to your computer and use it in GitHub Desktop.
# Combining tests using boolean operators
# All flights that departed before 5am or arrived after 10pm
filter(hflights, DepTime < 500 | ArrTime > 2200 )
# All flights that departed late but arrived ahead of schedule
filter(hflights, DepDelay > 0 & ArrDelay < 0)
# All cancelled weekend flights
filter(hflights, DayOfWeek %in% c(6,7) & Cancelled == 1)
# All flights that were cancelled after being delayed
filter(hflights, Cancelled == 1, DepDelay > 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment