Nothing
#' utility function to set string in backticks
#'
#' Quote a set of variable names with backticks
#'
#' @param x variable names
#'
#' @return quoted variable names
#'
#' @seealso [util_bQuote]
#' @family process_functions
#' @concept data_management
#' @keywords internal
util_backtickQuote <- function(x) {
na <- is.na(x)
res <- paste0("`", x, "`")
res[res == "``"] <- ""
res[na] <- NA
res
}
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.