Nothing
readList <- function(file) {
f <- readLines(file)
lst = sapply(f, function(x) unlist(strsplit(x, "\t", fixed = TRUE)))
names(lst) = sapply(lst, function(x) x[1])
lst = lapply(lst, function(x) x[-(1:2)])
return(lst)
}
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.