Nothing
## print a vector as an input string
inputVec <- function(vec, verbose=TRUE) {
res <- paste("c(", paste(sprintf("\"%s\"",vec), collapse=","),")\n", sep="")
if(verbose) {
cat(res)
}
return(invisible(res))
}
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.