You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
str_pad(tag, width = str_length(tag) + tag_padding, side = "left")
)
)
}
```
# (PART) Iteration {-}
# Introduction
It's often useful to apply the same function to every element of a vector, list, or tibble. The purrr package contains a set of useful functions for iterating over data structures and performing the same action at each element. In this section, we'll introduce some of the most useful purrr functions and explain how to apply them in different situations.