Nothing
#' @noRd
make_options_for_furrr <- local({
defaults_base <- NULL
function(options, fcn) {
## Nothing to do?
if (length(options) == 0L) return(options)
if (is.null(defaults_base)) {
defaults_base <<- setdiff(names(formals(furrr::furrr_options)), "...")
}
## Silently drop unknown future options
keep <- intersect(defaults_base, names(options))
options <- options[keep]
options <- do.call(furrr::furrr_options, args = options)
options <- list(.options = options)
options
}
})
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.