Nothing
combinedPath <- function (dir=NULL, fn)
{
if(is.null(fn)){
return(fn)
}
if (is.null(dir)) {
dir <- getwd()
}
dir <- normalizePath(dir)
fnc <- file.path(dir, fn)
return(fnc)
## There is absolutely no point in returning a list.
}
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.