Nothing
subtnames_aux <- function(x) {
if (nchar(x) > 10) {
x <- substr(x, 1, 10)
x <- paste(x, "~", sep = "")
}
return(x)
}
subtnames <- function(x) {
x <- as.list(x)
sapply(x, subtnames_aux)
}
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.