Skip to content

Instantly share code, notes, and snippets.

@lukereding
Created June 16, 2017 17:55
Show Gist options
  • Select an option

  • Save lukereding/c8b91258c4f0983d14faa5754e3fead8 to your computer and use it in GitHub Desktop.

Select an option

Save lukereding/c8b91258c4f0983d14faa5754e3fead8 to your computer and use it in GitHub Desktop.
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