Nothing
h5save <- function(..., file, name = NULL, createnewfile=TRUE, native = FALSE) {
N <- length(list(...))
# get object names
if (is.null(name)) {
name <- as.character(substitute(list(...)))[-1L]
}
if (length(name) != N) {
stop("length of 'name' argument must fit the number of objects to save.")
}
loc = h5checktypeOrOpenLoc(file, createnewfile=createnewfile, native = native)
for (i in 1:N) {
h5write(list(...)[[i]], file = loc$H5Identifier, name = name[i])
}
h5closeitLoc(loc)
invisible(NULL)
}
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.