Last active
March 31, 2020 04:58
-
-
Save christophergandrud/4466237 to your computer and use it in GitHub Desktop.
A function for downloading data stored on GitHub in a plain-text format (e.g. CSV, TSV) into R. The function loads the data as a data frame. For more details see: http://christophergandrud.blogspot.com/2013/01/sourcegithubdata-simple-function-for.html.
This file contains 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
##################### | |
# R function for downloading plain-text data from GitHub | |
# Christopher Gandrud | |
# 7 January 2013 | |
##################### | |
# source_GitHubData is directly based on source_url from the Hadley Wickham's devtools package | |
source_GitHubData <-function(url, sep = ",", header = TRUE) | |
{ | |
require(httr) | |
request <- GET(url) | |
stop_for_status(request) | |
handle <- textConnection(content(request, as = 'text')) | |
on.exit(close(handle)) | |
read.table(handle, sep = sep, header = header) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment