12 Loops+Iter P2
🧩 Learning Goals
By the end of this lesson, you should be able to:
- Use the
map()
family of functions in thepurrr
package to handle repeated tasks that create output, instead offor
loops - Use the
walk()
family of functions in thepurrr
package to handle repeated tasks that need side-effects, instead offor
loops
Iteration review
Let’s write a for
loop that stores the class()
(type) of every column in the mtcars
data frame.
Yes, str()
does this plus more for you. Let’s consider replicating this task through low-level iteration.
Recall that:
vector("numeric/logical/character/list", length)
creates a storage container.mtcars[[1]]
accesses the first element/column of the data frame.First, write out the steps in words.
go over each column get the class of each column store the classes
- Then translate each step to code.
Iteration with purrr
purrr
is a tidyverse
package that provides several useful functions for iteration.
Open up the purrr
cheatsheet.
The main advantages of purrr
include:
- Improved readability of R code
- Reduction in the “overhead” in writing a
for
loop- These functions create storage containers
- These functions do the
for (i in ...)
efficiently
Computational Time and Memory Allocation
Compare the four ways to create a vector of integers from 1 to 100,000.
Code
# Example 1: For loop with no storage container; append new value to existing vector
x <- integer()
results1 <- bench::mark(
for (i in 1:1e5) {
x <- c(x, i)
}
)
# Example 2: For loop with a storage container!
x <- vector('integer', length = 1e5)
results2 <- bench::mark(
for (i in 1:1e5) {
x[i] <- i
}
)
# Example 3: purrr::map()
results3 <- bench::mark(purrr::map_int(1:1e5, ~.x))
# Example 4: Standard R Function/Operator
results4 <- bench::mark(seq(1,1e5))
Iteration with map
In purrr
, we can use the family of map()
functions to iteratively apply a function to each element of a list or vector and save its output.
- Reminder: Data frames/tibbles are named lists so the elements are the “columns” so
map()
can iterate over columns of a dataset.
Let’s look at the purrr
cheatsheet to look at graphical representations of how these functions work.
-
map()
returns a list -
map_chr()
returns a character vector -
map_lgl()
returns a logical vector -
map_int()
returns an integer vector -
map_dbl()
returns a numeric vector -
map_vec()
returns a vector of a different (non-atomic) type (like dates)
Let’s return to our original task to replicate str()
.
To get the class()
of each data frame column, map_chr()
is sensible because classes are strings:
mpg cyl disp hp drat wt qsec vs
"numeric" "numeric" "numeric" "numeric" "numeric" "numeric" "numeric" "numeric"
am gear carb
"numeric" "numeric" "numeric"
Let’s get the class of each variable in diamonds
:
What happened!?
map_chr()
was expecting to create a character vector with one element per element (column) in diamonds
. But something happened in column 2 with the cut
variable.
Let’s figure out what happened:
Ah! cut
has 2 classes. In this case, map()
(which returns a list) is the best option because some variables have multiple classes:
$carat
[1] "numeric"
$cut
[1] "ordered" "factor"
$color
[1] "ordered" "factor"
$clarity
[1] "ordered" "factor"
$depth
[1] "numeric"
$table
[1] "numeric"
$price
[1] "integer"
$x
[1] "numeric"
$y
[1] "numeric"
$z
[1] "numeric"
The error we encountered with map_chr()
is a nice feature of purrr
because it allows us to be very sure of the type of output we are getting.
Failing loudly is vastly preferable to getting unexpected outputs silently
Recall that we explored syntax and functions for selecting variables in a data frame via the tidy-select documentation for across
. (?dplyr_tidy_select
in the Console.)
We can also combine map_*()
functions with tidy selection for some powerful variable summaries that require much less code than for
loops.
carat depth table price x y
0.7979397 61.7494049 57.4571839 3932.7997219 5.7311572 5.7345260
z
3.5387338
Code
cut color clarity
5 7 8
Exercises
- We want to compute several summary statistics on each quantitative variable in a data frame and organize the results in a new data frame (rows = variables, columns = summary statistics).
- Write a function called
summ_stats()
that takes a numeric vectorx
as input and returns the mean, median, standard deviation, and IQR as a data frame. You can usetibble()
to create the data frame.- Example:
tibble(a = 1:2, b = 2:3)
creates a data frame with variablesa
andb
.
- Example:
- Use a
map*()
function frompurrr
to get the summary statistics for each quantitative variable indiamonds
. - Look up the
bind_rows()
documentation fromdplyr
to combine summary statistics for all quantitative variables into one data frame.- Note: You’ll notice that the variable names are not present in the output. Try to figure out a way to add variable names back in with
mutate()
andcolnames()
.
- Note: You’ll notice that the variable names are not present in the output. Try to figure out a way to add variable names back in with
# A tibble: 7 × 5
Mean Median SD IQR variable
<dbl> <dbl> <dbl> <dbl> <chr>
1 0.798 0.7 0.474 0.64 carat
2 61.7 61.8 1.43 1.5 depth
3 57.5 57 2.23 3 table
4 3933. 2401 3989. 4374. price
5 5.73 5.7 1.12 1.83 x
6 5.73 5.71 1.14 1.82 y
7 3.54 3.53 0.706 1.13 z
Once you’ve done that with map()
, write a for
loop to achieve the same result. Which do you prefer in terms of ease of code writing and readability?
Code
# A tibble: 7 × 5
variable Mean Median SD IQR
<chr> <dbl> <dbl> <dbl> <dbl>
1 carat 0.798 0.7 0.474 0.64
2 depth 61.7 61.8 1.43 1.5
3 table 57.5 57 2.23 3
4 price 3933. 2401 3989. 4374.
5 x 5.73 5.7 1.12 1.83
6 y 5.73 5.71 1.14 1.82
7 z 3.54 3.53 0.706 1.13
Iteration with map2
or pmap
If you need to iterate over the rows of a data frame, we’ll need other versions of map
().
purrr
also offers map2()
and the pmap()
family of functions that take multiple inputs and loops over them simultaneously.
Let’s look at the purrr
cheatsheet to look at graphical representations of how these functions work.
Let’s look at this code to randomly simulate data from Normal distributions.
Code
# A tibble: 4 × 4
n mean sd rand_data
<dbl> <dbl> <dbl> <list>
1 100 0 4 <dbl [100]>
2 100 1 3 <dbl [100]>
3 100 2 2 <dbl [100]>
4 100 3 1 <dbl [100]>
Note how the column names in args
exactly match the argument names in rnorm()
.
The iteration that is happening is across rows, and the multiple arguments in rnorm()
are being matched by name.
To access the information in that rand_data
list, we need to unnest()
this list! It converts/unfolds the information into a numeric vector (repeating the information in mean
, sd
, n
)
Code
We can also use pmap()
to specify variations in some arguments but leave some arguments constant across the iterations:
Exercises
- Create 2 small examples that show how
pmap()
works withstr_sub()
. Your examples should:
- Use different arguments for
string
,start
, andend
- Use different arguments for
start
andend
but a fixedstring
Code
[1] "e" "eg" "et" "ands"
Code
[1] "H" "llo" "o Worl"
- Last class we worked on an extended exercise where our goal was to write a series of functions and a
for
loop to repeat linear model fitting under different “settings” (removal of outliers, model formula choice).
Repeat this exercise using pmap()
.
- You’ll need to use the
df_arg_combos
object, yourremove_outliers()
function, and yourfit_model()
function. - Review the solutions below for the necessary parts and make sure you understand each part.
- Then, try to put it all together using
pmap()
.
Code
# A tibble: 8 × 2
mod_formula remove_outliers
<chr> <lgl>
1 price ~ carat FALSE
2 price ~ carat TRUE
3 price ~ carat + cut FALSE
4 price ~ carat + cut TRUE
5 price ~ carat + cut + clarity FALSE
6 price ~ carat + cut + clarity TRUE
7 price ~ carat + cut + clarity + color FALSE
8 price ~ carat + cut + clarity + color TRUE
Code
remove_outliers <- function(data, what_var, sd_thresh) {
data |>
mutate(zscore = ({{ what_var }} - mean({{ what_var }}, na.rm = TRUE))/sd({{ what_var }}, na.rm = TRUE)) |>
filter(zscore <= sd_thresh)
}
fit_model <- function(data, mod_formula, remove_outliers) {
if (remove_outliers) {
data_clean <- remove_outliers(data, what_var = carat, sd_thresh = 3)
} else {
data_clean <- data
}
lm(mod_formula, data = data_clean)
}
# use pmap()
df_arg_combos |>
mutate(fit_mod = pmap(df_arg_combos, fit_model, data = diamonds))
# A tibble: 8 × 3
mod_formula remove_outliers fit_mod
<chr> <lgl> <list>
1 price ~ carat FALSE <lm>
2 price ~ carat TRUE <lm>
3 price ~ carat + cut FALSE <lm>
4 price ~ carat + cut TRUE <lm>
5 price ~ carat + cut + clarity FALSE <lm>
6 price ~ carat + cut + clarity TRUE <lm>
7 price ~ carat + cut + clarity + color FALSE <lm>
8 price ~ carat + cut + clarity + color TRUE <lm>
Iteration with walk
If we don’t care about saving an output for each iteration, we can use the family of walk()
functions (walk
, walk2
, and pwalk
) to apply a function to each element of a list or vector with no output.
Let’s say, we wanted to visualize the relationship between carat
and price
by clarity.
If we wanted a fully stratified (fully separated) analysis, we could create one visualization per clarity category and save it separately.
First, let’s create separate datasets that are still contained in one tibble.
Code
# A tibble: 8 × 2
clarity data
<ord> <list<tibble[,9]>>
1 I1 [741 × 9]
2 SI2 [9,194 × 9]
3 SI1 [13,065 × 9]
4 VS2 [12,258 × 9]
5 VS1 [8,171 × 9]
6 VVS2 [5,066 × 9]
7 VVS1 [3,655 × 9]
8 IF [1,790 × 9]
Code
# A tibble: 8 × 3
clarity data path
<ord> <list<tibble[,9]>> <glue>
1 I1 [741 × 9] diamonds-I1.png
2 SI2 [9,194 × 9] diamonds-SI2.png
3 SI1 [13,065 × 9] diamonds-SI1.png
4 VS2 [12,258 × 9] diamonds-VS2.png
5 VS1 [8,171 × 9] diamonds-VS1.png
6 VVS2 [5,066 × 9] diamonds-VVS2.png
7 VVS1 [3,655 × 9] diamonds-VVS1.png
8 IF [1,790 × 9] diamonds-IF.png
Additional Resources
If you are interested in having a deeper understanding of the purrr
package, I recommend you check out:
Functionals Chapter in Advanced R by Hadley Wickham ## Done!
Check the ICA Instructions for how to (a) push your code to GitHub and (b) update your portfolio website