20  Pivot

Author

Jarad Niemi

R Code Button

In this chapter, we will discuss the basics of wide versus long dimensions of data and the use of pivot_longer() and pivot_wider() to move between these two different dimensions.

library("tidyverse")
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr     1.1.2     ✔ readr     2.1.4
✔ forcats   1.0.0     ✔ stringr   1.5.0
✔ ggplot2   3.4.2     ✔ tibble    3.2.1
✔ lubridate 1.9.2     ✔ tidyr     1.3.0
✔ purrr     1.0.1     
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag()    masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
theme_set(theme_bw()) 

20.1 Wide vs Long

Multiple ways exist to store the same data. We use the terms wide and long to compare the the number of rows and columns in the data. Wide data will have more columns and fewer rows than a long version of the same data.

Generally, we store data in a wide format because it is efficient in terms of how much space it will take up. For constructing graphics or performing statistical analysis, we need the data in a long format.

Thus, it is helpful to be able to convert back and forth from wide to long format.

20.1.1 Wide

The airquality data set is stored in R as a wide data frame with rows and columns. Each row represents a single day and that row contains the measurements for ozone, solar radiation, wind, and temperature.

# View airquality
dim(airquality)
[1] 153   6
head(airquality)
  Ozone Solar.R Wind Temp Month Day
1    41     190  7.4   67     5   1
2    36     118  8.0   72     5   2
3    12     149 12.6   74     5   3
4    18     313 11.5   62     5   4
5    NA      NA 14.3   56     5   5
6    28      NA 14.9   66     5   6

This organization is convenient if we want to plot a single variable.

# Create date variable 
d <- airquality |>
  mutate(
    Date = as.Date(paste("1973",
                         Month,
                         Day,
                         sep = "-"))
  ) |>
  select(-Month, -Day)               # remove Month and Day variables

ggplot(d, 
       aes(x = Date,
           y = Temp)) +
  geom_line() +
  labs(
    title    = "New York Air Quality",
    subtitle = "Summer 1973",
    y        = "Temperature (F)"
  )

If we wanted to construct a plot with each of the variables on it, we would need to have 4 separate geom_line() lines. An alternative is to convert the data into a long format.

20.1.2 Long

A long format contains more rows and fewer columns than the equivalent data in a wide format.

# Create a long version of the airquality data (with Date)
d_long <- d |>
  # we'll discuss this function later
  pivot_longer(Ozone:Temp,
               names_to = "Measurement",
               values_to = "value") 

dim(d_long)
[1] 612   3
head(d_long)
# A tibble: 6 × 3
  Date       Measurement value
  <date>     <chr>       <dbl>
1 1973-05-01 Ozone        41  
2 1973-05-01 Solar.R     190  
3 1973-05-01 Wind          7.4
4 1973-05-01 Temp         67  
5 1973-05-02 Ozone        36  
6 1973-05-02 Solar.R     118  

Now we can use this long (and tidy) data for constructing graphics.

# Multiple geom_long()
ggplot(d_long,
       aes(
         x     = Date,
         y     = value,
         color = Measurement
       )) +
  geom_line() +
  labs(
    title    = "New York Air Quality Measurements",
    subtitle = "Summer 1973"
  )

# Using facets
ggplot(d_long,
       aes(
         x     = Date,
         y     = value
       )) +
  geom_line() +
  facet_wrap(~ Measurement, 
             scales = "free") +
  labs(
    title    = "New York Air Quality Measurements",
    subtitle = "Summer 1973"
  )

20.2 Pivot longer

When converting from a wide to a long data frame, we will use the pivot_longer() function. To pivot longer, we will need to tell the function what columns we want to pivot, what the variable name will be called that contains the former variable names, and what the variable name will be that contains the former values.

# Create a long version of the airquality data (with Date)
d_long <- d |>

  pivot_longer(
    Ozone:Temp,               # choose columns to pivot (same syntax as select)
    names_to = "Measurement", # former variable names are in this new variable
    values_to = "value")      # former values are in this new variable

head(d_long)
# A tibble: 6 × 3
  Date       Measurement value
  <date>     <chr>       <dbl>
1 1973-05-01 Ozone        41  
2 1973-05-01 Solar.R     190  
3 1973-05-01 Wind          7.4
4 1973-05-01 Temp         67  
5 1973-05-02 Ozone        36  
6 1973-05-02 Solar.R     118  

To determine what variables will be pivoted, we can use the same syntax we use when selecting columns.

# Create a long version of the airquality data (with Date)
d |>

  pivot_longer(
    -Date,                    # pivot all variables except Date
    names_to = "Measurement", # former variable names are in this new variable
    values_to = "value") |>   # former values are in this new variable
  
  head()
# A tibble: 6 × 3
  Date       Measurement value
  <date>     <chr>       <dbl>
1 1973-05-01 Ozone        41  
2 1973-05-01 Solar.R     190  
3 1973-05-01 Wind          7.4
4 1973-05-01 Temp         67  
5 1973-05-02 Ozone        36  
6 1973-05-02 Solar.R     118  

20.3 Pivot wider

If your data are in a long format, but you need it in a wide format (perhaps for saving the data to a file) you can use the pivot_wider() function. Now, you will need to tell the function what variable you want to be the new columns names and what variable you want to be the new values. You also need to tell the function what columns you want to be pivoted.

# Pivot wider
d <- d_long |>
  pivot_wider(names_from = "Measurement",
              values_from = "value") 

dim(d)
[1] 153   5
head(d)
# A tibble: 6 × 5
  Date       Ozone Solar.R  Wind  Temp
  <date>     <dbl>   <dbl> <dbl> <dbl>
1 1973-05-01    41     190   7.4    67
2 1973-05-02    36     118   8      72
3 1973-05-03    12     149  12.6    74
4 1973-05-04    18     313  11.5    62
5 1973-05-05    NA      NA  14.3    56
6 1973-05-06    28      NA  14.9    66

20.4 Summary

Many times the way data are stored is not the way we need them to be organized to construct graphics, perform analyses, or joining the data sets to other data sets.