Nothing
#' @importFrom utils head
load_object <- function(file) {
tmp_env <- new.env()
load(file = file, envir = tmp_env)
tmp_env[[ls(tmp_env)[1]]]
}
is_pkg <- function(){
return(file.exists(file.path(getwd(), "DESCRIPTION")) &&
file.exists(file.path(getwd(), "NAMESPACE"))
)
}
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.