Nothing
load_ROCKproject <- function(x,
output = tempdir()) {
if (!file.exists(x)) {
stop("The file to specified to load, `", x,
"`, does no exist!");
}
fileext <- tools::file_ext(x);
if (!grepl("rockproj|zip", fileext, ignore.case = TRUE)) {
stop("The file to specified to load, `", x,
"`, seems to have a different extension from 'ROCKproject'!");
}
projectFiles <-
utils::unzip(
zipfile = x,
exdir = output
);
}
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.