Dramatically speed up your R purrr
functions with the furrr
package
R’s purrr package is an amazing set of tools for applying a function to the items in a vector or list. Although the default for this type of operation in purrr is to run each step sequentially the furrr package makes it incredibly easy to improve performance by running the steps concurrently (in parallel). purrr […]
Continue reading →