powered by
DataSHIELD implentation of dplyr::arrange.
dplyr::arrange
ds.arrange( df.name = NULL, tidy_expr = NULL, .by_group = NULL, newobj = NULL, datasources = NULL )
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.
newobj
Character specifying a serverside data frame or tibble.
A list containing variables, or functions of variables. Use dplyr::desc() to sort a variable in descending order.
dplyr::desc()
If TRUE, will sort first by grouping variable. Applies to grouped data frames only.
Character specifying name for new server-side data frame.
DataSHIELD connections object.
if (FALSE) { ds.arrange( df.name = "mtcars", tidy_expr = list(drat), newobj = "sorted_df", datasources = conns ) }
Run the code above in your browser using DataLab