Nothing
str_split_ <- function(x, split = ";", quote = '"') {
scan(
text = x,
what = "character",
sep = split,
quote = quote,
quiet = TRUE
)
}
str_split <- function(x, split = ";", quote = '"') {
lapply(x, str_split_, split = split, quote = quote)
}
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.