Nothing
# seriation::train(...) =>
#
# with(doFuture::registerDoFuture(flavor = "%dofuture%"), local({
# options(future.disposable = structure(OPTS, dispose = FALSE))
# on.exit(options(future.disposable = NULL))
# seriation::seriate_best(...)
# }))
#
append_transpilers_for_seriation <- function() {
transpilers <- make_package_transpilers("seriation", FUN = function(fcn, name) {
if ("parallel" %in% names(formals(fcn))) {
list(
label = sprintf("seriation::%s() ~> seriation::%s()", name, name),
transpiler = make_futurize_for_doFuture(args = list(parallel = TRUE), defaults = list(seed = TRUE))
)
}
})
append_transpilers("futurize::add-on", transpilers)
## Return required packages
c("seriation", "doFuture")
}
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.