Nothing
### paste head of vector, and if some of it is left out, add '...' to it.
headDots <- function(x, max.cols) {
s <- paste(head(x, max.cols), collapse=", ")
if(length(x) > max.cols) {
s <- paste(s, "...")
}
s
}
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.