View source: R/future_xmap_mat.R
future_xmap_mat | R Documentation |
Parallelized cross map returning a matrix or array
future_xmap_mat( .l, .f, ..., .names = TRUE, .progress = FALSE, .options = furrr::furrr_options() ) future_xmap_arr( .l, .f, ..., .names = TRUE, .progress = FALSE, .options = furrr::furrr_options() )
.l |
A list of vectors, such as a data frame. The length of .l determines the number of arguments that .f will be called with. List names will be used if present. |
.f |
A function, formula, or vector (not necessarily atomic). If a function, it is used as is. If a formula, e.g.
This syntax allows you to create very compact anonymous functions. If character vector, numeric vector, or list, it is
converted to an extractor function. Character vectors index by
name and numeric vectors index by position; use a list to index
by position and name at different levels. If a component is not
present, the value of |
... |
Additional arguments passed on to |
.names |
A logical indicating whether to give names to the dimensions of
the matrix or array.
If inputs are named, the names are used.
If inputs are unnamed, the elements of the input are used as names.
Defaults to |
.progress |
A single logical. Should a progress bar be displayed? Only works with multisession, multicore, and multiprocess futures. Note that if a multicore/multisession future falls back to sequential, then a progress bar will not be displayed. Warning: The |
.options |
The |
A matrix (for future_xmap_mat()
) or array (for future_xmap_arr()
)
with dimensions matching the lengths of each input in .l
.
Unparallelized versions: xmap_mat()
and xmap_arr()
future_xmap_vec()
to return a vector.
future_xmap()
for the underlying functions.
future_xmap_mat(list(1:3, 1:3), ~ ..1 * ..2) fruits <- c(a = "apple", b = "banana", c = "cantaloupe") future_xmap_mat(list(1:3, fruits), paste) future_xmap_mat(list(1:3, fruits), paste, .names = FALSE) future_xmap_arr(list(1:3, 1:3, 1:3), ~ ..1 * ..2 * ..3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.