This repository has been archived by the owner on Feb 4, 2022. It is now read-only.
googlesheets v0.2.0
googlesheets 0.2.0
- Added a
NEWS.md
file to track changes to the package. httr v1.1.0
: to become compatible with this version, we now require it.- Dependency changes:
plyr
is no longer required (#204)purrr
is a new dependency
gs_browse()
is a new function to visit a Google Sheet in the browser.gs_rename()
is a new function to rename an existing Sheet (#145).gs_add_row()
now works for two-dimensionalinput
, by calling itself once per row ofinput
(#188, @jimhester).- Updated the scope for the Drive API. It is possible that new/updated Drive functions will require a token obtained with the new scope. This could mean that tokens stored and loaded from file in a non-interactive environment will need to be remade.
gs_read_listfeed()
now supports parameters to manipulate data in the API call itself:reverse
inverts row order,orderby
selects a column to sort on,sq
accepts a structured query to filter rows. (#17)gs_read_listfeed()
doesn't return API-mangled column names anymore. They should now be the same as those from the other read functions and what you see in the browser.readr
-style data ingest: We explicitly try to match the interface ofreadr::read_csv()
. The read functionsgs_read()
,gs_read_csv()
, andgs_read_listfeed()
and the reshapergs_reshape_cellfeed()
should all return the same data frame when operating on the same worksheet. And this should match whatreadr::read_csv()
would return on a.csv
file exported from that worksheet. The type conversion arguments forgs_simplify_cellfeed()
have also changed accordingly.- The
header
argument is no longer accepted. Usecol_names
. - If you're not happy with the defaults, take control via the
...
arguments ofgs_read*
or reshape/simplify functions. Specifycolumn_types
,col_names
,locale
,na
,trim_ws
, etc. here. - See the sections "Controlling data ingest, theory and practice" in the the basic usage vignette for details and examples.
readr
exception #1: variables that consist entirely of missing values will beNA
of the logical type, notNA_character_
.readr
exception #2:googlesheets
will never return a data frame withNA
as a variable name. Instead, it will create a dummy variable name, likeX5
.readr
exception #3: All read/reshape functions acceptcheck.names
, in the spirit ofutils::read.table()
, which defaults toFALSE
. IfTRUE
, variable names will be run throughmake.names(..., unique = TRUE)
. (#208)
- The
gs_read_cellfeed()
now returns all possible definitions of cell contents:value
: The variable previously known ascell_text
. What you see in the browser and what Sheets API returns by default.input_value
: What you would have typed into the cell. Will give unevaluated formulas. (#18, #19, #152)numeric_value
: An actual number, if such exists, unmangled by rounding or other numeric formatting. (#152, #178)
- New argument
literal = FALSE
available in reading/reshaping functions that call the cell feed. Tries to be clever about using different definitions of cell contents. gs_deauth()
is a newly exported function that allows you to suspend the current token and, optionally, disable the.httr-oauth
token cache file by renaming it to.httr-oauth-SUSPENDED
.
Here is the actual .tar.gz
that was submitted to CRAN (prepared in a CRAN submission branch, due to vignette issues that need to be finessed.)