As mentioned last time,
we often want to build up a data frame iteratively. The map() family
of functions in purrr can help with this. Here I’ll show a handy
pattern for keeping track of what you’ve added to the data frame you’re
making.
The map_dfr() …

Continue reading: Indexing Iterations with …