Nothing
#' Function prints a given message in a formatted header with borders.
#'
#' @param msg message to be printed within the header.
#'
#' @export
catHeader <- function(msg) {
space <- rep(" ", (60 - nchar(msg)) / 2)
cat(rep("-", 60), "\n", sep = "")
cat(space, msg, space, "\n", sep = "")
cat(rep("-", 60), "\n", sep = "")
}
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.