Nothing
#' An s4 generic
#'
#' @export
setGeneric("multi", function(x, y) {
x
})
#' @rdname multi
#' @export
setMethod("multi", signature(x = "numeric"), function(x, y) {
x
})
#' @rdname multi
#' @export
setMethod(
"multi",
signature(x = "numeric", y = "integer"),
function(x, y) {
x
}
)
#' @export
setMethod("multi", signature(x = "character"), function(x, y) {
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.