Learning objective: Analyze the results of correlation tests and simple regression models for many data sets at once.

While the broom package in tidymodel is useful for summarizing the result of a single analysis in a consistent format, it is really designed for high-throughput applications, where you must combine results from multiple analyses. These could be subgroups of data, analyses using different models, bootstrap replicates, permutations, and so on.

In particular, the broom package works well with the nest() and unnest() functions from tidyr package and the map() function in purrr.

Correlation

#Correlation----

In this practice, we will use the built-in data set Orange. Let’s start with assigning Orange to a tibble. This gives a nicer print method that will be especially useful later on when we start working with list-columns.

library(tidyverse)
library(tidymodels)

data(Orange)
Orange <- as_tibble(Orange) #coerce an existing object into a tibble data frame.
Orange
## # A tibble: 35 x 3
##    Tree    age circumference
##    <ord> <dbl>         <dbl>
##  1 1       118            30
##  2 1       484            58
##  3 1       664            87
##  4 1      1004           115
##  5 1      1231           120
##  6 1      1372           142
##  7 1      1582           145
##  8 2       118            33
##  9 2       484            69
## 10 2       664           111
## # ... with 25 more rows

The data set contains 35 observations of three variables, Tree, age, circumference. Tree is a factor variable with five levels indicating five trees. age and circumference are correlated:

cor(Orange$age, Orange$circumference)
## [1] 0.9135189
ggplot(data = Orange, aes(x = age, y = circumference, color = Tree)) +
  geom_line()

Suppose you want to test for correlations individually within each tree. You can do this with dplyr::group_by:

Orange %>% 
  group_by(Tree) %>%
  summarize(correlation = cor(age, circumference))
## # A tibble: 5 x 2
##   Tree  correlation
##   <ord>       <dbl>
## 1 3           0.988
## 2 1           0.985
## 3 5           0.988
## 4 2           0.987
## 5 4           0.984

Correlations of each tree are uniformly higher than the aggregated one.

Suppose that instead of simply estimating a correlation, we want to perform a hypothesis test with cor.test():

ct <- cor.test(Orange$age, Orange$circumference)
ct
## 
##  Pearson's product-moment correlation
## 
## data:  Orange$age and Orange$circumference
## t = 12.9, df = 33, p-value = 1.931e-14
## alternative hypothesis: true correlation is not equal to 0
## 95 percent confidence interval:
##  0.8342364 0.9557955
## sample estimates:
##       cor 
## 0.9135189

This test output contains multiple values we may be interested in. Some are vectors of length 1, such as the p-value and the estimate, and some are longer, such as the confidence interval. We can get this into a nicely organized tibble using the tidy() function:

tidy(ct)
## # A tibble: 1 x 8
##   estimate statistic  p.value parameter conf.low conf.high method    alternative
##      <dbl>     <dbl>    <dbl>     <int>    <dbl>     <dbl> <chr>     <chr>      
## 1    0.914      12.9 1.93e-14        33    0.834     0.956 Pearson'~ two.sided

However, we may want to perform multiple correlation tests or fit multiple models at once, each on a different part of the data. In this case, using a nest-map-unnest is recommended. For example, suppose we want to perform correlation tests for each different tree. We start by nesting our data based on the group of interest:

nested <- 
  Orange %>% 
  nest(data = c(age, circumference)) #creating a tibble according to the specified column.

Then, we perform a correlation test for each nested tibble using purrr::map():

nested %>% 
  mutate(test = map(data, ~ cor.test(.x$age, .x$circumference))) #apply cor.test to all column in the nested tibble.
## # A tibble: 5 x 3
##   Tree  data             test   
##   <ord> <list>           <list> 
## 1 1     <tibble [7 x 2]> <htest>
## 2 2     <tibble [7 x 2]> <htest>
## 3 3     <tibble [7 x 2]> <htest>
## 4 4     <tibble [7 x 2]> <htest>
## 5 5     <tibble [7 x 2]> <htest>

This results in a list-column of S3 objects. We want to tidy each of the objects, which we can also do with map().

nested %>% 
  mutate(
    test = map(data, ~ cor.test(.x$age, .x$circumference)), # S3 list-col
    tidied = map(test, tidy)
  ) 
## # A tibble: 5 x 4
##   Tree  data             test    tidied          
##   <ord> <list>           <list>  <list>          
## 1 1     <tibble [7 x 2]> <htest> <tibble [1 x 8]>
## 2 2     <tibble [7 x 2]> <htest> <tibble [1 x 8]>
## 3 3     <tibble [7 x 2]> <htest> <tibble [1 x 8]>
## 4 4     <tibble [7 x 2]> <htest> <tibble [1 x 8]>
## 5 5     <tibble [7 x 2]> <htest> <tibble [1 x 8]>

Then, we unnest() the tidied data frames so we can see the results in a flat tibble. All together, this looks like:

Orange %>% 
  nest(data = c(age, circumference)) %>% 
  mutate(
    test = map(data, ~ cor.test(.x$age, .x$circumference)), # S3 list-col
    tidied = map(test, tidy)
  ) %>% 
  unnest(cols = tidied) %>% 
  select(-data, -test)
## # A tibble: 5 x 9
##   Tree  estimate statistic p.value parameter conf.low conf.high method
##   <ord>    <dbl>     <dbl>   <dbl>     <int>    <dbl>     <dbl> <chr> 
## 1 1        0.985      13.0 4.85e-5         5    0.901     0.998 Pears~
## 2 2        0.987      13.9 3.43e-5         5    0.914     0.998 Pears~
## 3 3        0.988      14.4 2.90e-5         5    0.919     0.998 Pears~
## 4 4        0.984      12.5 5.73e-5         5    0.895     0.998 Pears~
## 5 5        0.988      14.1 3.18e-5         5    0.916     0.998 Pears~
## # ... with 1 more variable: alternative <chr>
#Regression models----

The nest-map-unnest workflow is also useful when applied to regressions. Untidy output for a regression looks like this:

lm_fit <- lm(age ~ circumference, data = Orange)
summary(lm_fit)
## 
## Call:
## lm(formula = age ~ circumference, data = Orange)
## 
## Residuals:
##     Min      1Q  Median      3Q     Max 
## -317.88 -140.90  -17.20   96.54  471.16 
## 
## Coefficients:
##               Estimate Std. Error t value Pr(>|t|)    
## (Intercept)    16.6036    78.1406   0.212    0.833    
## circumference   7.8160     0.6059  12.900 1.93e-14 ***
## ---
## Signif. codes:  0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## 
## Residual standard error: 203.1 on 33 degrees of freedom
## Multiple R-squared:  0.8345, Adjusted R-squared:  0.8295 
## F-statistic: 166.4 on 1 and 33 DF,  p-value: 1.931e-14

But When we tidy these results, we get multiple rows of output for each model:

tidy(lm_fit)
## # A tibble: 2 x 5
##   term          estimate std.error statistic  p.value
##   <chr>            <dbl>     <dbl>     <dbl>    <dbl>
## 1 (Intercept)      16.6     78.1       0.212 8.33e- 1
## 2 circumference     7.82     0.606    12.9   1.93e-14

Now we can handle multiple regressions at once using exactly the same workflow as before:

Orange %>%
  nest(data = c(-Tree)) %>% #all expept "Tree"
  mutate(
    fit = map(data, ~ lm(age ~ circumference, data = .x)),
    tidied = map(fit, tidy)
  ) %>% 
  unnest(tidied) %>% 
  select(-data, -fit)
## # A tibble: 10 x 6
##    Tree  term          estimate std.error statistic   p.value
##    <ord> <chr>            <dbl>     <dbl>     <dbl>     <dbl>
##  1 1     (Intercept)    -265.      98.6      -2.68  0.0436   
##  2 1     circumference    11.9      0.919    13.0   0.0000485
##  3 2     (Intercept)    -132.      83.1      -1.59  0.172    
##  4 2     circumference     7.80     0.560    13.9   0.0000343
##  5 3     (Intercept)    -210.      85.3      -2.46  0.0574   
##  6 3     circumference    12.0      0.835    14.4   0.0000290
##  7 4     (Intercept)     -76.5     88.3      -0.867 0.426    
##  8 4     circumference     7.17     0.572    12.5   0.0000573
##  9 5     (Intercept)     -54.5     76.9      -0.709 0.510    
## 10 5     circumference     8.79     0.621    14.1   0.0000318

You can just as easily use multiple predictors in the regressions, as shown here on the mtcars dataset. We nest the data into automatic vs. manual cars (the am column), then perform the regression within each nested tibble.

data(mtcars)
mtcars <- as_tibble(mtcars)  # to play nicely with list-cols
mtcars
## # A tibble: 32 x 11
##      mpg   cyl  disp    hp  drat    wt  qsec    vs    am  gear  carb
##    <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
##  1  21       6  160    110  3.9   2.62  16.5     0     1     4     4
##  2  21       6  160    110  3.9   2.88  17.0     0     1     4     4
##  3  22.8     4  108     93  3.85  2.32  18.6     1     1     4     1
##  4  21.4     6  258    110  3.08  3.22  19.4     1     0     3     1
##  5  18.7     8  360    175  3.15  3.44  17.0     0     0     3     2
##  6  18.1     6  225    105  2.76  3.46  20.2     1     0     3     1
##  7  14.3     8  360    245  3.21  3.57  15.8     0     0     3     4
##  8  24.4     4  147.    62  3.69  3.19  20       1     0     4     2
##  9  22.8     4  141.    95  3.92  3.15  22.9     1     0     4     2
## 10  19.2     6  168.   123  3.92  3.44  18.3     1     0     4     4
## # ... with 22 more rows
mtcars %>%
  nest(data = c(-am)) %>% 
  mutate(
    fit = map(data, ~ lm(wt ~ mpg + qsec + gear, data = .x)),  # S3 list-col
    tidied = map(fit, tidy)
  ) %>% 
  unnest(tidied) %>% 
  select(-data, -fit)
## # A tibble: 8 x 6
##      am term        estimate std.error statistic  p.value
##   <dbl> <chr>          <dbl>     <dbl>     <dbl>    <dbl>
## 1     1 (Intercept)   4.28      3.46      1.24   0.247   
## 2     1 mpg          -0.101     0.0294   -3.43   0.00750 
## 3     1 qsec          0.0398    0.151     0.264  0.798   
## 4     1 gear         -0.0229    0.349    -0.0656 0.949   
## 5     0 (Intercept)   4.92      1.40      3.52   0.00309 
## 6     0 mpg          -0.192     0.0443   -4.33   0.000591
## 7     0 qsec          0.0919    0.0983    0.935  0.365   
## 8     0 gear          0.147     0.368     0.398  0.696

In addition to tidy(), we can also have augment() and glance() outputs as well while performing Regression only once. Since we’re using list-columns, we can just fit the model once and use multiple list-columns to store the tidied, glanced and augmented outputs.

regressions <- 
  mtcars %>%
  nest(data = c(-am)) %>% 
  mutate(
    fit = map(data, ~ lm(wt ~ mpg + qsec + gear, data = .x)),
    tidied = map(fit, tidy),
    glanced = map(fit, glance),
    augmented = map(fit, augment)
  )

For tidy output

regressions %>% 
  select(tidied) %>% 
  unnest(tidied)
## # A tibble: 8 x 5
##   term        estimate std.error statistic  p.value
##   <chr>          <dbl>     <dbl>     <dbl>    <dbl>
## 1 (Intercept)   4.28      3.46      1.24   0.247   
## 2 mpg          -0.101     0.0294   -3.43   0.00750 
## 3 qsec          0.0398    0.151     0.264  0.798   
## 4 gear         -0.0229    0.349    -0.0656 0.949   
## 5 (Intercept)   4.92      1.40      3.52   0.00309 
## 6 mpg          -0.192     0.0443   -4.33   0.000591
## 7 qsec          0.0919    0.0983    0.935  0.365   
## 8 gear          0.147     0.368     0.398  0.696

For glance output

regressions %>% 
  select(glanced) %>% 
  unnest(glanced)
## # A tibble: 2 x 11
##   r.squared adj.r.squared sigma statistic p.value    df   logLik   AIC   BIC
##       <dbl>         <dbl> <dbl>     <dbl>   <dbl> <int>    <dbl> <dbl> <dbl>
## 1     0.833         0.778 0.291     15.0  7.59e-4     4 -5.80e-3  10.0  12.8
## 2     0.625         0.550 0.522      8.32 1.70e-3     4 -1.24e+1  34.7  39.4
## # ... with 2 more variables: deviance <dbl>, df.residual <int>

For augment output

regressions %>% 
  select(augmented) %>% 
  unnest(augmented)
## # A tibble: 32 x 11
##       wt   mpg  qsec  gear .fitted .se.fit  .resid  .hat .sigma .cooksd
##    <dbl> <dbl> <dbl> <dbl>   <dbl>   <dbl>   <dbl> <dbl>  <dbl>   <dbl>
##  1  2.62  21    16.5     4    2.73   0.209 -0.107  0.517  0.304 7.44e-2
##  2  2.88  21    17.0     4    2.75   0.152  0.126  0.273  0.304 2.43e-2
##  3  2.32  22.8  18.6     4    2.63   0.163 -0.310  0.312  0.279 1.88e-1
##  4  2.2   32.4  19.5     4    1.70   0.137  0.505  0.223  0.233 2.78e-1
##  5  1.62  30.4  18.5     4    1.86   0.151 -0.244  0.269  0.292 8.89e-2
##  6  1.84  33.9  19.9     4    1.56   0.156  0.274  0.286  0.286 1.25e-1
##  7  1.94  27.3  18.9     4    2.19   0.113 -0.253  0.151  0.293 3.94e-2
##  8  2.14  26    16.7     5    2.21   0.153 -0.0683 0.277  0.307 7.32e-3
##  9  1.51  30.4  16.9     5    1.77   0.191 -0.259  0.430  0.284 2.63e-1
## 10  3.17  15.8  14.5     5    3.15   0.157  0.0193 0.292  0.308 6.44e-4
## # ... with 22 more rows, and 1 more variable: .std.resid <dbl>

By combining the estimates and p-values across all groups into the same tidy data frame (instead of a list of output model objects), a new class of analyses and visualizations becomes straightforward. This includes:
* sorting by p-value or estimate to find the most significant terms across all tests,
* p-value histograms, and
* volcano plots comparing p-values to effect size estimates.

In each of these cases, we can easily filter, facet, or distinguish based on the term column. In short, this makes the tools of tidy data analysis available for the results of data analysis and models, not just the inputs.