Nothing
#' An example S4 class
#'
#' @slot data Some data
#'
S4Example <- setClass("S4Example", representation(data = "list"))
#' Provide names of the data slot in an S4Example object
#'
#' @param x An x
#'
setMethod("names", signature("S4Example"), function(x) {
names(x@data)
})
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.