Nothing
load.if <- function(x, verbose=TRUE, ...){
got <- NULL
if(!is.null(x)){
if(verbose)
message(paste("Loading: "), x)
y <- load(file=x, verbose=verbose, ...)
got <- get(y)
assign(y, got, envir=parent.frame(1))
}
invisible(got)
}
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.