Nothing
#' A generic with a self-linked method
#'
#' @param x A parameter
#' @export
self_link <- function(x) {
UseMethod("self_link")
}
#' @rdname self_link
#' @export
self_link.default <- function(x) {
x
}
#' Test data frame
#'
#' @param x A parameter
#' @export
self_link.data.frame <- function(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.