Nothing
read.columns <- function (filename, columns){
start <- min(columns)
length <- max(columns) - start + 1
if (start == 1) {
return(read.fwf(filename, widths = length))
}
else {
return(read.fwf(filename, widths = c(start - 1, length))[, 2])
}
}
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.