Nothing
callLauncherFun <- function(fname, ...) {
verifyAvailable()
if (hasFun(fname))
return(callFun(fname, ...))
if (!exists("RStudio.Version", envir = globalenv()))
stop("RStudio is not available.", call. = FALSE)
RStudio.Version <- get("RStudio.Version", envir = globalenv())
version <- RStudio.Version()
if (is.null(version$edition)) {
fmt <- "Launcher API '%s' is not available in the open-source edition of RStudio."
stop(sprintf(fmt, fname))
}
if (identical(version$mode, "desktop")) {
fmt <- "Launcher API '%s' is not yet available in the Desktop edition of RStudio."
stop(sprintf(fmt, fname))
}
fmt <- "Launcher API '%s' is not available in this version of RStudio."
stop(sprintf(fmt, fname))
}
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.