Skip to content

Instantly share code, notes, and snippets.

@gumdropsteve
Last active December 8, 2020 09:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gumdropsteve/e6e9a09a8874688937e19ef01002f990 to your computer and use it in GitHub Desktop.
Save gumdropsteve/e6e9a09a8874688937e19ef01002f990 to your computer and use it in GitHub Desktop.
# STARTER CODE
link <- 'https://github.com/gumdropsteve/datasets/raw/master/deck.csv'
deck <- read.csv(link)
# | means or, this is covered in the Kaggle course today
# putting conditions in () allows us to put the | between and see if either condition is satisfied
# deck[(deck$value >= 7) | (deck$value == 1), ]
@gumdropsteve
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment