Nothing
#' An example of an S3 generic
#'
#' @param x An X
#' @param ... Ellipsis
#'
#' Used to ensure traces can be linked through s3 dispatch
#'
#' @rdname s3_example_func
#' @export
s3_example_func <- function(x, ...) {
UseMethod("s3_example_func")
}
#' @rdname s3_example_func
#' @export
s3_example_func.default <- function(x, ...) {
"default"
}
#' @rdname s3_example_func
#' @export
s3_example_func.list <- function(x, ...) {
"list"
}
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.