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, ...)
A data frame or tibble.
A list of data frames or tibbles.
A function.
Additional arguments passed to the function.