ds.as_tibble | R Documentation |
DataSHIELD implementation of tibble::as_tibble
. Currently only implemented
for data frames and tibbles.
ds.as_tibble(
x = NULL,
.rows = NULL,
.name_repair = "check_unique",
rownames = NULL,
newobj = NULL,
datasources = NULL
)
x |
A data frame or matrix. |
.rows |
The number of rows, useful to create a 0-column tibble or just as an additional check. |
.name_repair |
Treatment of problematic column names:
|
rownames |
How to treat existing row names of a data frame or matrix:
|
newobj |
Character specifying name for new server-side data frame. |
datasources |
DataSHIELD connections object. |
No return value, called for its side effects. A tibble with the name specified by newobj
is created on the server.
## Not run:
ds.as_tibble(
x = "mtcars",
newobj = "mtcars_tib",
datasources = conns
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.