Nothing
##
## f p r i n t f . R Formatted printing to stdout or file
##
fprintf <- function(fmt, ..., file = "", append = FALSE) {
mystr <- sprintf(fmt, ...)
cat(mystr, file = file, append = append)
invisible(nchar(mystr))
}
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.