Nothing
compsplit <- function(x, split) {
if (split %in% gs("special.characters"))
split <- paste0("\\", split)
res <- strsplit(x, split)
if (is.list(res)) {
withspace <- any(unlist(lapply(res, grepl, pattern = "^\\s+|\\s+$")))
res <- lapply(res, gsub, pattern = "^\\s+|\\s+$", replacement = "")
}
else {
withspace <- any(grepl("^\\s+|\\s+$", "", res))
res <- gsub("^\\s+|\\s+$", "", res)
}
##
attr(res, "withspace") <- withspace
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.