Created
June 16, 2017 17:55
-
-
Save lukereding/c8b91258c4f0983d14faa5754e3fead8 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
| random_csv = "http://datadryad.org/bitstream/handle/10255/dryad.37977/Cranby%20E4%20pheno.csv?sequence=1" | |
| # read in a csv | |
| df <- read.csv(random_csv) | |
| # print it to the console | |
| print(df) | |
| # print the raw characters from the csv file to the console | |
| readLines(random_csv) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment