Skip to content

Instantly share code, notes, and snippets.

@mhkeller
Created October 4, 2012 17:14
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 mhkeller/3835047 to your computer and use it in GitHub Desktop.
Save mhkeller/3835047 to your computer and use it in GitHub Desktop.
Input Google Doc to R
csvData <- getURL("https://docs.google.com/spreadsheet/pub?key=[YOUR-KEY-GOES-HERE]&output=csv")
df <- read.csv(textConnection(csvData), stringsAsFactors = FALSE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment