Last active
August 29, 2015 14:15
-
-
Save laurenancona/8e07599e3e0995b9e29d to your computer and use it in GitHub Desktop.
Import Google Spreadsheets data into R
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
#Load dependencies | |
library(XML) | |
library(httr) | |
# Sheet needs to be published, replace URL below & update tab number on line 19 | |
# (if more than 1, L-R) where 'sheet = 1' | |
# Be sure to unfreeze any cells to prevent empty rows on import | |
url <- "https://docs.google.com/spreadsheets/d/XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX/pubhtml" | |
dfClean <- function(df){ | |
nms <- t(df[1,]) | |
names(df) <- nms | |
df <- df[-1,-1] | |
row.names(df) <- seq(1,nrow(df)) | |
df | |
} | |
readGoogleSpreadsheet <- function(url, sheet = 1){ | |
library(httr) | |
r <- GET(as.character(url)) | |
html <- content(r) | |
sheets <- readHTMLTable(html, header=FALSE, stringsAsFactors=FALSE) | |
df <- sheets[[sheet]] | |
dfClean(df) | |
} | |
df <- readGoogleSpreadsheet(url) | |
#ht @jpmarindiaz, @nickreich, & @devlintufts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment