Description Usage Arguments Details Value Examples
Add a new worksheet to an existing spreadsheet. By default, it will [1] have
1000 rows and 26 columns, [2] contain no data, and [3] be titled "Sheet1".
Use the ws_title
, row_extent
, col_extent
, and ...
arguments to give the worksheet a different title or extent or to populate it
with some data. This function calls the
Google Drive API to
create the worksheet and edit its title or extent. If you provide data for
the sheet, then this function also calls the
Google Sheets
API. The title of the new worksheet can not be the same as any existing
worksheet in the sheet.
1 2 |
ss |
a registered Google spreadsheet, i.e. a |
ws_title |
the title for the new, sole worksheet; if unspecified, the Google Sheets default is "Sheet1" |
row_extent |
integer for new row extent; if unspecified, the Google Sheets default is 1000 |
col_extent |
integer for new column extent; if unspecified, the Google Sheets default is 26 |
... |
optional arguments passed along to |
verbose |
logical; do you want informative messages? |
We anticipate that if the user wants to control the extent of the
new worksheet, it will be by providing input data and specifying 'trim =
TRUE' (see gs_edit_cells
) or by specifying row_extent
and col_extent
directly. But not both ... although we won't stop you.
In that case, note that explicit worksheet sizing occurs before data
insertion. If data insertion triggers any worksheet resizing, that will
override any usage of row_extent
or col_extent
.
a googlesheet
object
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
# get a copy of the Gapminder spreadsheet
gap_ss <- gs_copy(gs_gap(), to = "Gapminder_copy")
gap_ss <- gs_ws_new(gap_ss)
gap_ss <- gs_ws_delete(gap_ss, ws = "Sheet1")
gap_ss <-
gs_ws_new(gap_ss, ws_title = "Atlantis", input = head(iris), trim = TRUE)
gap_ss
gs_delete(gap_ss)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.