Skip to content
/ gsheet Public

❗ This is a read-only mirror of the CRAN R package repository. gsheet — Download Google Sheets Using Just the URL. Homepage: https://github.com/maxconway/gsheet Report bugs for this package: https://github.com/maxconway/gsheet/issues

Notifications You must be signed in to change notification settings

cran/gsheet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gsheet

CRAN_Status_Badge R-CMD-check

gsheet is a simple package to download [Google Sheets](https://www.google.com/sheets/about/ (aka Google Docs Spreadsheets) using just the sharing link. Sheets can be downloaded as a data frame, or as plain text to parse manually.

Installation

Install from CRAN with:

install.packages('gsheet')

Or install the latest development version from github with:

devtools::install_github("maxconway/gsheet")

Getting started

Download a google sheet as a table with:

library(gsheet)
gsheet2tbl('docs.google.com/spreadsheets/d/1I9mJsS5QnXF2TNNntTy-HrcdHmIF9wJ8ONYvEJTXSNo')

Advanced

More control

If you want more control, you might want to use something like:

url <- 'docs.google.com/spreadsheets/d/1I9mJsS5QnXF2TNNntTy-HrcdHmIF9wJ8ONYvEJTXSNo'
a <- gsheet2text(url, format='csv')
b <- read.csv(a, stringsAsFactors=FALSE)

This way the table can be cleaned before parsing, and different options can be used in parsing.

Downloading other sheets

If you want to download a sheet other than the first, you have to use the direct url, copied from the address bar, like so:

url <- 'docs.google.com/spreadsheets/1I9mJsS5QnXF2TNNntTy-HrcdHmIF9wJ8ONYvEJTXSNo#gid=850032961'
b <- gsheet2tbl(url)

This works because this makes the gid, which is the sheet identifier, available. If you have problems downloading the first sheet, this can also help too.

About

❗ This is a read-only mirror of the CRAN R package repository. gsheet — Download Google Sheets Using Just the URL. Homepage: https://github.com/maxconway/gsheet Report bugs for this package: https://github.com/maxconway/gsheet/issues

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages