Nothing
#' A wrapper to add to the class attribute.
#'
#' @param x [any]\cr
#' Your object.
#' @param classes [\code{character}]\cr
#' Classes to add. Will be added in front (specialization).
#' @return Changed object \code{x}.
#' @export
#' @examples
#' x = list()
#' print(class(x))
#' x = addClasses(x, c("foo1", "foo2"))
#' print(class(x))
addClasses = function(x, classes) {
class(x) = c(classes, class(x))
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.