Nothing
#' A wrapper for \code{class(x) = classes}.
#'
#' @param x [any]\cr
#' Your object.
#' @param classes [\code{character}]\cr
#' New classes.
#' @return Changed object \code{x}.
#' @export
#' @examples
#' setClasses(list(), c("foo1", "foo2"))
setClasses = function(x, classes) {
class(x) = classes
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.