Nothing
.onAttach <- function(libname, pkgname) {
# Display ASCII art
ascii_art_path <- system.file("extdata", "ascii_art.txt", package = "TransProR")
if (file.exists(ascii_art_path)) {
ascii_art_lines <- readLines(ascii_art_path)
ascii_art <- paste(ascii_art_lines, collapse = "\n")
packageStartupMessage(ascii_art)
} else {
packageStartupMessage("Welcome to TransProR!")
}
}
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.