Nothing
##' Conveniently writeLines to file
##' @param lines the character lines to write
##' @param file The file name path to write to
##' @return NULL
##' @keywords internal
writeTextFile <- function(lines,file){
con <- file(file, "wb")
writeLines(lines, con = con)
close(con)
}
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.