#' Vector of character strings (cs) from list of unquoted names
#'
#' Returns a vector of character strings (cs) from list of unquoted names.
#' Copied from the Hmisc package.
#' @param ... Unquoted names.
#' @export
#' @examples
#' cs(a, cat, dog)
cs <- function(...) {
return(as.character(sys.call()[-1]))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.