Nothing
#' getList
#'
#' Creates a list with element names replaced by \code{link{getText}}.
#'
#' @param ... named elements of a list
#'
#' @return renamed list
#' @export
#'
#' @examples
#' getList(BOSTON=1, MTCARS=2)
getList <- function(...) {
args <- list(...)
names(args) <- getText(names(args))
args
}
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.