Nothing
# ============================
# Auxiliary print functions
# ============================
#' @keywords internal
.print_header <- function(title) {
cat("\n")
cat(strrep("=", 50), "\n")
cat(title, "\n")
cat(strrep("=", 50), "\n")
}
#' @keywords internal
.print_block <- function(title, content, width = 40) {
cat("\n", title, "\n", sep = "")
cat(strrep("-", width), "\n")
content()
cat(strrep("-", width), "\n")
}
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.