Last active
December 8, 2020 09:59
-
-
Save gumdropsteve/e6e9a09a8874688937e19ef01002f990 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
# 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), ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Starter helper code for https://docs.google.com/document/d/1Hxu2aIVDqep5bZfMKld3QDWJmVOCsqg7X1CEwNLu3UU/edit?usp=sharing