Description Usage Arguments Details Value See Also Examples
Create a new spreadsheet in your Google Drive. It will contain a single
worksheet which, by default, 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 sheet and edit the worksheet name or extent. If you provide data
for the sheet, then this function also calls the
Google Sheets
API.
1 2 |
title |
the title for the new spreadsheet |
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
gs_edit_cells
for specifics on populating the new
sheet with some data and gs_upload
for creating a new
spreadsheet by uploading a local file. Note that gs_upload
is
likely much faster than using gs_new
and/or
gs_edit_cells
, so try both if speed is a concern.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.