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