forked from DanOvando/learn-purrr
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathREADME.Rmd
766 lines (443 loc) · 19.7 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
---
title: "Practicing `purrr`"
author: "Dan Ovando"
date: "2/17/2017"
output:
html_document:
toc: yes
toc_float: yes
html_notebook:
toc: yes
toc_float: yes
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(tidyverse)
library(purrr)
library(repurrrsive)
library(stringr)
library(ggthemes)
library(gapminder)
library(modelr)
pres_theme <- theme_fivethirtyeight(base_size = 16, base_family = 'Arial Narrow') +
theme(axis.title = element_text())
theme_set(pres_theme)
```
The goal of this workshop and document is to get you familiar with the workings of the `purrr` package. There's of course a lot more than can be covered here, but hopefully this should get you familiar with
1. Using `purrr` as a replacement for `apply`
2. Using `purrr` to wrangle lists
3. Using `purrr` for data analysis
Full credit to Jenny Bryan's [excellent `purrr` tutorial](https://jennybc.github.io/purrr-tutorial/) for many of the ideas here, along with Hadley Wickham & Garret Grolemund's [R for Data Science](http://r4ds.had.co.nz). My goal is to walk you through some of the concepts outlined in these (much better) resources, and expand on some particular applications that have been useful to me.
## What is `purrr`?
`purrr` is a part of the tidyverse, taking on the tasks accomplished by the `apply` suite of functions in base R (and a whole lot more). It's great at applying operations across many dimensions of your data, improving your ability to keep even complex analyses "tidy". At it's simplest, it's just another way to use `apply`. At its most complex, it allows you to easily move around in and manipulate multi-dimensional (and multi-type) data.
There are a whole suite of functions involved with `purrr`, but the goal of this tutorial is to get the fundamentals down so that you can start incorporating `purrr` into your own code and explore higher-level abilities on your own.
### Key verbs
`map` is the workhorse of the `purrr` family. It is basically `apply`
- The basic syntax:
- `map("Lists to apply function to","Function to apply across lists","Additional parameters")`
```{r}
map(mtcars, mean, na.rm = T)
```
- `map` by default returns a list
- `map_TYPE` returns an object of class TYPE
- `map_lgl` returns logical objects
- `map_df` returns data frames, etc.
Specifying type makes it easier to wrangle different types of outputs
`map` can also be extended to deal with multiple input lists
- `map` applies a function over one list.
- `map2` applies a function over combinations of two lists in the form
- `map2(list1, list2, ~function(.x,.y), ...)`
```{r}
map2_chr(c('one','two','red','blue'), c('fish'), paste)
```
`purrr` is smart enough to help you with some basic stuff, like guessing that I'm trying to do with paste here. A lot of times that won't work and you have to be more specific though. In this example, we can do the exact same thing with
```{r}
map2_chr(c('one','two','red','blue'), c('fish'), ~paste(.x,.y))
```
`map3` was for 3 lists, where each list is now .x,.y,.z.
Anything above three lists is handled by `pmap`
```
pmap(list(list1,list2,list3), function,...)
```
This is where things start to improve substantially on `apply`: instead of having to smash all the things you want to apply a function over into one data frame, you can easily pass multiple named inputs to a function.
Getting used to using `map` is the foundation to working with `purrr`.
We'll now go into more detail on ways to use this in a practical way.
To bring this part together, here are three ways of doing the exact same thing, checking to see if all the rows in a data frame are NA
```{r}
x <- c(1,1,NA,NA)
y <- c(1, NA, 1, NA)
z <- data_frame(x = x, y = y)
myfoo <- function(x,y){
out <- (is.na(x) & is.na(y))
}
map(z, sum)
z %>%
mutate(both_na = map2_lgl(x,y,myfoo))
z %>%
mutate(both_na = map2_lgl(x,y, ~ is.na(.x) & is.na(.y)))
z %>%
mutate(both_na = pmap_lgl(list(x = x,y = y), myfoo))
```
## Functional programming
`purrr` is designed to help with "functional programming", which you can take broadly as trying to use functions (preferably "pure" ones) to accomplish most of your complex and repetitive tasks (don't copy and paste more then 3 times - H. Wickham)
As a very quick reintroduction to functions:
Functions in R take any number of named inputs, do operations on them, and returns the last thing produced inside the function (or whatever you specify using `return`)
```{r}
z <- 10
foo <- function(x,y) {
z <- x + y
return(z)
}
foo(x = 2,y = 3)
z
```
Notice that `z` wasn't affected by the `z` inside the function. Operations inside functions happen in the local environment of that function. "What happens in the function, stays in the function (except what you share via Facebook/`return`)"
Note though that functions can "see" objects in the global environment
```{r}
a <- 10
foo <- function(x,y) {
z <- x + y + a
return(z)
}
foo(x = 2, y = 3)
```
I strongly recommend you avoid relying on global variables inside functions: it can very easily cause unintended and sneaky behavior.
Functions can be as complicated as you want them to be, but a good rule is to try and make sure each function is good at doing *one* thing. That doesn't mean that that "one thing" can't be a complex series of operation, but the objective of the function should be to produce that one thing well. E.g., write one function to process your data, one function to run your model, one function to diagnose your model, etc.
You can also use "anonymous" functions in R/`purrr`. This is basically a shortcut for when you don't want to take up the space of writing and saving a whole function somewhere. You make anonymous functions with `~`
Say you want the coefficient of variation of each of the variables in `mtcars`
```{r}
foo <- function(x){
sd(x) / mean(x)
}
map(mtcars, foo)
```
Can be accomplished using
```{r}
map(mtcars, ~ sd(.) / mean(.))
```
Notice the rather confusing `.` in there. `.` basically is a marker for whatever data is passed to a function/thing in R.
```{r}
mtcars %>% {
.$mpg
}
```
The `{` after the pipe tells R that the things inside the brackets don't take the data passed to it as its first argument
## Wrangling lists
Let's get back to actually using `purrr` in practice.
Lists are powerful objects that allow you to store all kinds of information in one place.
They can also be a pain to deal with, since we are no longer in the nice 2-D structure of a traditional data frame.
`purrr` has all kinds of useful tools for helping you quickly and efficiently poke around inside lists. Let's start with the Game of Thrones database in the `repurrrsive` package. This is a list containing a bunch of information on GoT characters with a "point of view" chapter in the first few books.
The `str` function is a great way to get a first glimpse at a list's structure
```{r}
str(got_chars, list.len = 3)
```
For those of you who prefer a more interactive approach, you can also use the `jsonedit` function in the `listviewer` package
```{r}
listviewer::jsonedit(got_chars)
```
So, how do we start poking around in this database?
Suppose we wanted only the first 5 characters in the list
```{r}
got_chars[1:5] %>%
str(max.level = 1)
```
Now, suppose that we jut want to look at the name of the first 5 characters. Who remembers how to do this in base R?
Me neither.
```{r}
got_chars[[1]]$name
got_chars[[2]]$name
```
Here's how we do that in `purrr`
```{r}
got_chars[1:5] %>%
map_chr('name')
```
`map` figures that when you do this, you're looking for that list entry. I actually find some of the "helps" a bit confusing when you're learning, since they play by slightly different rules than the `purrr` functions usually do. Case in point, given the above example, how do we think we might get the 'name' and 'allegiances' columns?
```{r}
got_chars[1:5] %>%
map(c('name','allegiances')) %>%
listviewer::jsonedit()
```
Huh, why didn't that work? `purrr` has some built in helpers for simple operations, but as things get more complicated you need to specify functions
```{r}
got_chars[1:5] %>%
set_names(map_chr(., 'name')) %>%
map(`[`, c('name', 'allegiances')) %>%
listviewer::jsonedit()
```
In this case, `[` is basically saying use `[]` as a function. There a bunch of these hidden in `purrr` which are a little complicated at first, but this is the most common.
One more example, let's say you've got a list that goes a little deeper, same rules apply.
```{r}
thing <- list(list(y = 2, z = list(w = 'hello')),
list(y = 2, z = list(w = 'world')))
str(thing)
map_chr(thing, c('z','w'))
```
If you're like me, the numeric indexing of each of the entries is currently driving you nuts: I'd rather have each element in the list be named by the character it refers to
```{r}
got_chars[1:5] %>%
set_names(map_chr(.,'name')) %>%
listviewer::jsonedit()
```
Much better! Now, suppose that I want more than just the names
Now, let's say that I want to get all the Lanisters, so I can see which people to hate.
This is where a lot of the power of `purrr` starts to come in, allowing you to easily apply functions across nested layers of a list
```{r}
got_chars %>%
set_names(map_chr(.,'name')) %>%
map(`[`,c('name','allegiances')) %>%
keep(~str_detect(.$name, 'Lannister')) %>%
listviewer::jsonedit()
```
Now, suppose that we want anyone who's allied with the Starks
```{r}
got_chars[1:4] %>%
set_names(map_chr(.,'name')) %>%
map(`[`,c('name','allegiances')) %>%
map(~str_detect(.$allegiances, 'Stark'))
```
Hmmm, that doesn't look good, what's up with Will? What happens if I try and use `keep` (list `filter`) here?
```{r, eval = F}
got_chars %>%
set_names(map_chr(.,'name')) %>%
map(`[`,c('name','allegiances')) %>%
keep(~str_detect(.$allegiances, 'Stark'))
```
Can fix that with a bit of a hack. There's almost certainly a better way, but this just shows that things get a little more complicated when you're trying to apply functions across list objects; things like dimensions, types, NULLs, can cause problems. If I'm trying something new, I'll usually try and develop the methods on a subset of the list that I know is "ideal", make sure it works there, and then try the operation on progressively more complicated lists. That allows me to separate errors in my functions vs. problems reading in "odd" data types.
```{r}
got_chars %>%
set_names(map_chr(.,'name')) %>%
map(`[`,c('name','allegiances')) %>%
keep(~ifelse(length(.$allegiances) > 0, str_detect(.$allegiances, 'Stark'),FALSE)) %>%
listviewer::jsonedit()
```
As Cersei likes to remind us, anyone who's not a Lannister is an enemy to the Lannisters. Let's look at all the POV characters that aren't allied to the Lannisters
```{r}
got_chars %>%
set_names(map_chr(.,'name')) %>%
map(`[`,c('name','allegiances')) %>%
discard(~ifelse(length(.$allegiances) > 0, str_detect(.$allegiances, 'Lannister'),FALSE)) %>%
listviewer::jsonedit()
```
You can also use `map` together with your own custom functions. Suppose we wanted to figure out how many aliases and alliances each character has, as well as where they were born. We can use `pmap` to apply a function over each of these attributes
```{r}
got_list <- got_chars %>%
map(`[`, c('name','aliases','allegiances','born'))
got_list <- got_chars %>% {
list(
name = map_chr(.,'name'),
aliases = map(.,'aliases'),
allegiances = map(.,'allegiances'),
born = map_chr(.,'born')
)
}
str(got_list, list.len = 3)
got_foo <- function(name, aliases, allegiances,born){
paste(name, 'has', length(aliases), 'aliases and', length(allegiances),
'allegiances, and was born in', born)
}
got_list %>%
pmap_chr(got_foo) %>%
head()
```
Things obviously get a lot more complicated than this, but hopefully that gives you an idea of how to manipulate lists using `purrr`
```{r}
got_chars %>%
set_names(map_chr(.,'name')) %>%
map(`[`,c('name','allegiances')) %>%
listviewer::jsonedit()
```
## Analysis with `purrr` and `modelr`
So far, `purrr` has basically helped us use tidy operations on lists. That's nice, but its real power comes in helping with analysis. Let's look at the gapminder data set
```{r}
DT::datatable(gapminder)
```
```{r, echo = F}
gapminder::gapminder %>%
ggplot(aes(year,lifeExp, color = country)) +
geom_line(show.legend = F) +
facet_wrap(~continent) +
labs(title = 'Life expectancy across continents')
```
Now, suppose we want to build up a model trying to predict life expectancy as a function of covariates, starting with a simple one: life expectancy as a function of population and per capita GDP
```{r}
gapminder <- gapminder %>%
set_names( colnames(.) %>% tolower())
life_mod <- lm(lifeexp ~ pop + gdppercap, data = gapminder)
```
```{r, results = 'asis'}
stargazer::stargazer(life_mod, type = 'html')
```
Not bad for a simple model, but how do we know if this is the model we want to use? Let's use AIC to compare a few different model structures (note, this is not an endorsement for AIC mining!)
```{r}
m1 <- 'lifeexp ~ pop + gdppercap'
m2 <- 'lifeexp ~ pop + gdppercap + continent + year'
m3 <- 'lifeexp ~ pop + gdppercap + country + year'
m4 <- 'lifeexp ~ pop + gdppercap + year*country'
```
Now, since this is a simple three model example, we could just use a loop, or even copy and paste a few times. But, let's see how we can use `purrr` to help us do some diagnostics on these models.
Let's start by getting our models and data into a data frame, using list-columns
```{r}
model_frame <- data_frame(model = c(m1, m2, m3,m4)) %>%
mutate(model = map(model, as.formula))
```
First, let's use purrr to convert each of these character strings into a model
```{r}
model_frame <- data_frame(model_name = c('simple','medium','more', 'woah'),model = list("simple" = m1, 'medium' = m2, 'more' = m3, 'woah' = m4)) %>%
mutate(model = map(model, as.formula))
model_frame
```
```{r, eval = F}
model_frame <- model_frame %>%
mutate(fit = lm(model, data = gapminder))
```
Hmmm, why didn't that work? `mutate` by itself doesn't know how to evaluate this, but `map` can help us out
```{r}
model_frame <- model_frame %>%
mutate(fit = map(model, ~lm(., data = gapminder)))
model_frame
```
We're now going to start integrating some methods from the `modelr` package to diagnose our regression
```{r}
model_frame <- model_frame %>%
mutate(r2 = map_dbl(fit, ~rsquare(., data = gapminder)),
aic = map_dbl(fit, ~AIC(.)))
model_frame
```
So, AIC tells us that our über complicated model is still the most parsimonious. Let's dig into this a bit further, by explicitly testing the out of sample predictive ability of each of the models. "Overfit" models are commonly really good at describing the data that they are fit to, but perform poorly out of sample.
We'll start by using the `modelr` package to create a bunch of training-test combination data sets
```{r}
validate <- gapminder %>%
crossv_mc(20, test = 0.25)
test_data <- list(test_training = list(validate), model = model_frame$model)
test_data <- cross_d(test_data) %>%
unnest(test_training, .drop = F, .id = 'model_number') %>%
mutate(model_number = as.numeric(model_number)) %>%
left_join(data_frame(model_number = c(1:4), model_name = c('simple','medium', 'more','woah')), by = 'model_number')
test_data
```
In a few lines of code, we now have "tidy" cross validation routine across multiple models, not bad.
```{r}
test_data <- test_data %>%
mutate(fit = map2(model, train, ~lm(.x, data = .y))) %>%
mutate(root_mean_sq_error = map2_dbl(fit, test, rmse))
test_data
```
```{r}
test_data %>%
ggplot(aes(root_mean_sq_error, fill = model_name)) +
geom_density(alpha = 0.75) +
labs(x = 'Root Mean Squared Error', title = 'Cross-validated distribution of RMSE')
```
## Miscellaneos `purrr`
That's a broad tour of the key features of `purrr`. Here's a few more examples of miscellaneous things you can do with `purrr`
### Check on factors
Factors can creep into your data, especially if you're reading in .csv's using base R. There's lot's of ways to solve this, but you can use `purrr` to efficiently check for factors, and convert them to characters in your data frame.
```{r}
gapminder
```
Yep, look at that, country and continent are both factors. Useful for regression, but a little dangerous to have in your raw data.
We can use `purrr` to find all the factors in our data
```{r}
gapminder %>%
map(is.factor)
```
And to convert each column that is a factor into a character
```{r}
factor_foo <- function(x){
if (class(x) == 'factor'){
y <- as.character(x)
} else {
y <- x
}
}
gapminder %>%
map_df(factor_foo)
```
### Center and Scale
One problem with our earlier regression: the scales of the different variables are wildly our of proportion
```{r}
summary(gapminder %>% select(year,lifeexp, pop, gdppercap))
```
This can can make your regression a little hard to interpret. How do you think about the intercept in this model for example? Or, how do you compare the relative magnitude of coefficients? An increase of 1 year life expectancy is a much bigger shift and an increase in population of 1.
You can "center and scale" you data to resolve this problem, generally by
$$ x^{centered, scaled} = \frac{(x - mean(x))} {2\sigma_{x}} $$
See Gelman & Hill 2007 for a good explanation of this.
Centering and scaling doesn't change the statistics of the model (significance etc.), just helps with interpretation in OLS. But, if you're doing maximum likelihood or Bayesian statistics, centering and scaling can dramatically improve the ability of the model to converge.
Suppose then that we want to center and scale all of the continuous variables in our data
```{r}
center_scale <- function(x, xname, omit_names = '') {
if (is.numeric(x) & !all(unique(x) %in% c(1, 0)) &
!xname %in% omit_names) {
x <- (x - mean(x)) / (2* sd(x))
}
return(x)
}
gapminder %>%
map2_df(
colnames(.),
center_scale
)
```
Looks good, except for the year thing. We're treating year as a continuous variable in our model. Suppose though we want to treat it as a factor, so that there doesn't have to be one slope for year. Remember that we can pass additional parameters through `map`
```{r}
gapminder %>%
map2_df(
colnames(.),
center_scale,
omit_names = 'year'
)
```
### Save all plots
Suppose you've got a large project and want to save (or print) all the plots. This often leads to a lot of copy and pasting of save commands, etc.
Here's another solution, using `walk`
I usually tag all my ggplot objects that I want to save with `_plot`
```{r}
life_v_money_plot <- gapminder %>%
ggplot(aes(gdppercap, lifeexp)) +
geom_abline(aes(slope = 1, intercept = 0)) +
geom_point() +
geom_smooth(method = 'lm')
life_v_money_plot
```
```{r}
life_v_time_plot <- gapminder %>%
ggplot(aes(year, lifeexp)) +
geom_point() +
geom_smooth(method = 'lm')
```
Suppose I want to save both of these plots?
```{r}
plot_files <- (ls()[ str_detect(ls(), '_plot')])
plot_foo <- function(x){
ggsave(paste0(x,'.pdf'), get(x), device = cairo_pdf)
}
walk(plot_files, plot_foo)
```
### Partial
I just really like this one. Suppose you've got something that you are copy and pasting a lot, like getting the upper and lower CI of something
```{r}
gapminder %>%
summarise(
mean_gdp = mean(gdppercap),
lower_gdp = quantile(gdppercap, 0.25),
upper_gdp = quantile(gdppercap, 0.75),
mean_life = mean(lifeexp),
lower_life = quantile(lifeexp, 0.25),
upper_life = quantile(lifeexp, 0.75)
)
```
Works, and in this case not hard, but still annoying to retype!
```{r}
lower = partial(quantile, probs = 0.25)
upper = partial(quantile, probs = 0.75)
gapminder %>%
summarise(
mean_gdp = mean(gdppercap),
lower_gdp = lower(gdppercap),
upper_gdp = upper(gdppercap),
mean_life = mean(lifeexp),
lower_life = lower(lifeexp),
upper_life = upper(lifeexp)
)
```