Nothing
#' Utility method; create temporary file if necessary
#'
#' @param file a string or XMLInternalDocument
#' @return location of file
#'
#' @concept paxtoolsr
#' @noRd
checkInputFile <- function(file) {
if(typeof(file) == "externalptr") {
tmp <- tempfile()
saveXML(file, tmp)
file <- tmp
}
return(file)
}
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.