Nothing
#' @tags future_eapply
#' @tags sequential multisession multicore
if (requireNamespace("future.apply", quietly = TRUE)) {
library(futurize)
message("*** future_eapply() ...")
message("- From example(eapply) ...")
for (strategy in supportedStrategies()) {
message(sprintf("*** strategy = %s ...", sQuote(strategy)))
plan(strategy)
env <- new.env(hash = FALSE)
env$a <- 1:10
env$beta <- exp(-3:3)
env$logic <- c(TRUE, FALSE, FALSE, TRUE)
y0 <- unlist(eapply(env, mean, USE.NAMES = FALSE))
y1 <- unlist(eapply(env, mean, USE.NAMES = FALSE) |> futurize())
stopifnot(all.equal(y1, y0))
y0 <- eapply(env, quantile, probs = 1:3/4)
y1 <- eapply(env, quantile, probs = 1:3/4) |> futurize()
stopifnot(all.equal(y1, y0))
y0 <- eapply(env, quantile)
y1 <- eapply(env, quantile) |> futurize()
stopifnot(all.equal(y1, y0))
y2 <- eapply(env, "quantile") |> futurize()
stopifnot(all.equal(y2, y0))
plan(sequential)
message(sprintf("*** strategy = %s ... done", sQuote(strategy)))
} ## for (strategy in ...)
message("*** future_eapply() ... DONE")
} ## if (requireNamespace("future.apply", quietly = TRUE))
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.