Nothing
#' A custom knitr print method for htmlwidgets
#'
#' @param x an R object to be printed
#' @param \ldots additional arguments passed to the htmlwidgets \code{knit_print} method
#' @param options knitr options
#'
#' @export
#' @importFrom utils getFromNamespace
knit_print.htmlwidget <- function (x, ..., options = NULL) {
if (!is.null(options$lazy) && options$lazy) {
print_lazy_widget(x, options = options)
} else {
print_widget <- getFromNamespace("knit_print.htmlwidget", "htmlwidgets")
print_widget(x, ..., options = options)
}
}
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.