Nothing
fix_rscript <- function(file = NULL) {
if(is.null(file)) file <- Sys.glob("*.R")
if(length(file) != 1L) stop("exactly one .R file should be supplied")
file.copy(file, "_orig.R")
formatR::tidy_source(source = file, file = file,
comment = TRUE, blank = TRUE, keep.space = FALSE, arrow = TRUE,
indent = 2, width.cutoff = 80)
x <- readLines(file)
if(x[length(x)] == " FALSE") writeLines(x[-length(x)], file)
}
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.