Nothing
mwDebug <- function() {
options(mwDebug = TRUE)
}
mwUndebug <- function() {
options(mwDebug = FALSE)
}
mwDebugMode <- function() {
res <- getOption("mwDebug")
if (is.null(res)) res <- FALSE
res
}
catIfDebug <- function(...) {
if (mwDebugMode()) cat(..., "\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.