Nothing
file.head <- function(file, n = 6, truncate.cols = TRUE){
lns <- readLines(file, n = n)
lns <- gsub("\t", "\\\\t", lns)
if(truncate.cols){
try(file.head.lns <- substr(lns, 1, getOption("width") - 1), silent = TRUE)
if(!exists("file.head.lns")){
Encoding(lns) <- "bytes"
file.head.lns <- substr(lns, 1, getOption("width") - 1)
}
}
cat(file.head.lns, sep = "\n")
}
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.