Nothing
#' Attach attributes to an object and return it
#'
#' @param x the object
#' @param ... named arguments, each becomes an attributes
#'
#' @return `x`, having the desired attributes attached
#'
#' @family process_functions
#' @concept process
#' @keywords internal
util_attach_attr <- function(x, ...) {
atts <- list(...)
attributes(x)[names(atts)] <- atts
x
}
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.