View source: R/helper-functions.R
map_and_rbind | R Documentation |
This function is a simple combination of purrr::map
and purrr::reduce
using rbind
. This differs from purrr::map_dfr
, which uses
dplyr::map_dfr
and therefore introduces dplyr
as a dependency. If the
provided list is empty, then an empty tibble will be returned.
map_and_rbind(.x, .f, ...)
.x |
A list of data frames or tibbles. |
.f |
A function. |
... |
Additional arguments passed to the function. |
A data frame or tibble.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.