Nothing
.onAttach <- function(libname, pkgname) {
gsubfn.engine <- getOption("gsubfn.engine")
# if gsubfn.engine was not set to "R" then check if tcltk can be used
if ( ! identical(gsubfn.engine, "R") ) {
tcltk.ok <- isTRUE(capabilities()[["tcltk"]]) &&
requireNamespace("tcltk", quietly = TRUE)
if ( ! tcltk.ok ) {
options(gsubfn.engine = "R")
packageStartupMessage('Could not load tcltk. Will use slower R code instead.')
}
}
}
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.