ds.distinct | R Documentation |
DataSHIELD implentation of dplyr::distinct
.
ds.distinct(
df.name = NULL,
tidy_expr = NULL,
.keep_all = FALSE,
newobj = NULL,
datasources = NULL
)
df.name |
Character specifying a serverside data frame or tibble. |
tidy_expr |
Optionally, list of variables to use when determining uniqueness. If there are multiple rows for a given combination of inputs, only the first row will be preserved. If omitted, will use all variables in the data frame. |
.keep_all |
If TRUE, keep all variables in .data. If a combination of |
newobj |
Character specifying name for new server-side data frame. |
datasources |
DataSHIELD connections object. |
No return value, called for its side effects. An object (typically a data frame or tibble)
with the name specified by newobj
is created on the server.
## Not run:
ds.distinct(
df.name = "mtcars",
expr = list(mpg, cyl),
newobj = "distinct_df"
)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.