As of furrr 0.3.0, future_options() is defunct in favor of
furrr_options().
Arguments
- globals
A logical, a character vector, a named list, or
NULLfor controlling how globals are handled. For details, see theGlobal variablessection below.- packages
A character vector, or
NULL. If supplied, this specifies packages that are guaranteed to be attached in the R environment where the future is evaluated.- seed
A logical, an integer of length
1or7, a list oflength(.x)with pre-generated random seeds, orNULL. For details, see theReproducible random number generation (RNG)section below.- scheduling
A single integer, logical, or
Inf. This argument controls the average number of futures ("chunks") per worker.If
0, then a single future is used to process all elements of.x.If
1orTRUE, then one future per worker is used.If
2, then each worker will process two futures (provided there are enough elements in.x).If
InforFALSE, then one future per element of.xis used.
This argument is only used if
chunk_sizeisNULL.
Examples
try(future_options())
#> Error : `future_options()` was deprecated in furrr 0.3.0 and is now defunct.
#> Please use `furrr_options()` instead.
