set_internal_map | R Documentation |
Allows the user to set which mapping function is being used internally in the functions.
set_internal_map(map_function = NULL)
map_function |
which function to use, assigns it to an internal object |
by default, the package uses purrr::map to iterate over things. However, if you have the furrr package installed, you could switch it to use furrr::future_map instead.
## Not run:
library(furrr)
future::plan(multicore)
set_internal_map(furrr::future_map)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.