The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

The Futureverse is a unifying framework for parallelization and distributed processing in R. This package, futureverse, is a utility wrapper package that makes it easy to install most common Futureverse packages in one go.
Start by configuring Futureverse to parallelize on the current computer:
future::plan(future::multisession)After this, all it takes is a minor tweak to make your existing
lapply(), map(), or foreach()
code to run in parallel, e.g.
library(futurize)
## Sequential and parallel version of base R apply
y <- lapply(X, slow_fcn)
y <- lapply(X, slow_fcn) |> futurize()
## Sequential and parallel version of purrr map
library(purrr)
y <- X |> map(slow_fcn)
y <- X |> map(slow_fcn) |> futurize()
## Sequential and parallel version of foreach
library(foreach)
y <- foreach(x = X) %do% slow_fcn(x)
y <- foreach(x = X) %do% slow_fcn(x) |> futurize()Call:
install.packages("futureverse")to install:
Call:
install.packages("futureverse", dependencies = TRUE)to install also additional parallel backends:
plan(multisession)plan(multisession)These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.