Nothing
skip_if_not_rstudio <- function(version = NULL) {
available <- rstudioapi::isAvailable(version)
message <- if (is.null(version))
"RStudio not available"
else
paste("RStudio version '", version, "' not available", sep = "")
if (!available)
skip(message)
TRUE
}
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.