Nothing
#' @title Vectorised if-else
#' @description DataSHIELD implementation of \code{dplyr::if_else}.
#' @param condition A list specifying a logical vector in tidyverse syntax, ie data and column names unquoted.
#' @param true Vector to use for TRUE value of condition.
#' @param false Vector to use for FALSE value of condition.
#' @param missing If not NULL, will be used as the value for NA values of condition. Follows the same size and type rules as true and false.
#' @param ptype An optional prototype declaring the desired output type. If supplied, this overrides the common type of true, false, and missing.
#' @param size An optional size declaring the desired output size. If supplied, this overrides the size of condition.
#' @param newobj Character specifying name for new server-side data frame.
#' @param datasources datashield connections object.
#' @return No return value, called for its side effects. A vector with the same size as
#' \code{condition} and the same type as the common type of \code{true}, \code{false}, and
#' \code{missing} is created on the server.
#' @importFrom DSI datashield.assign
#' @importFrom rlang enquo
#' @examples
#' \dontrun{
#' ## First log in to a DataSHIELD session with mtcars dataset loaded.
#'
# ` ds.if_else(
# ` condition = list(mtcars$mpg > 20),
# `. true = "high",
# `. false = "low",
# `. newobj = "new_var")
#'
#' ## Refer to the package vignette for more examples.
#' }
#' @export
ds.if_else <- function(condition = NULL, true = NULL, false = NULL, missing = NULL,
ptype = NULL, size = NULL, newobj = NULL, datasources = NULL) {
tidy_select <- .format_args_as_string(enquo(condition))
datasources <- .set_datasources(datasources)
.check_tidy_args(NULL, newobj, check_df = FALSE)
cally <- .make_serverside_call("ifElseDS", tidy_select, list(true, false, missing, ptype, size))
datashield.assign(datasources, newobj, cally)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.