Quick post - detect and fix this ggplot2 antipattern

Recently one of my coworkers showed me a ggplot and although it is not wrong, it is also not ideal. Here is the TL:DR :

Whenever you find yourself adding multiple geom_* to show different groups, reshape your data

In software engineering there are things called antipatterns, ways of programming that lead you into potential trouble. This is one of them.

I’m not saying it is incorrect, but it might lead you into trouble.

example: we have some data, some different calculations and we want to plot that.

**I load tidyverse and create a modified mtcars set in this hidden part### this adds headers to the file

library(tidyverse) # I started loading magrittr, ggplot2 and tidyr, and realised
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ──
## ✔ ggplot2 3.3.6     ✔ purrr   0.3.5
## ✔ tibble  3.1.8     ✔ dplyr   1.0.9
## ✔ tidyr   1.2.0     ✔ stringr 1.4.1
## ✔ readr   2.1.2     ✔ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
# I needed dplyr too, at some point loading tidyverse is simply easiest.
very_serious_data <- 
  mtcars %>% 
  as_tibble(rownames = "carname") %>% 
  group_by(cyl) %>% 
  mutate(
    mpg_hp = mpg/hp,
    first_letter = str_extract(carname, "^[A-z]"),
    mpg_hp_c = mpg_hp/mean(mpg_hp),# grouped mean
    mpg_hp_am = mpg_hp+ am
    )

Now the data (mtcars) and calculations don’t really make sense but they are here to show you the antipattern. I created 3 variants of dividing mpg (miles per gallon) by hp (horse power)

The antipattern

We have a dataset with multiple variables (columns) and want to plot one against the other, so far so good.

What is the effect of mpg_hp for every first letter of the cars?

very_serious_data %>% 
  ggplot(aes(first_letter, mpg_hp))+
  geom_point()+
  labs(caption = "So far so good")

But you might wonder what the other transformations of that variable do? You can just add a new geom_point, but maybe with a different color? And to see the dots that overlap you might make them a little opaque.

very_serious_data %>% 
  ggplot(aes(first_letter, mpg_hp))+
  geom_point(alpha = 2/3)+
  geom_point(aes(y = mpg_hp_c), color = "red", alpha = 2/3)+
  labs(caption = "adding equivalent information")

And maybe the third one too?

very_serious_data %>% 
  ggplot(aes(first_letter, mpg_hp))+
  geom_point(alpha = 2/3)+
  geom_point(aes(y = mpg_hp_c), color = "red", alpha = 2/3)+
  geom_point(aes(y = mpg_hp_am), color = "blue", alpha = 2/3)+
  labs(caption = "soo much duplication in every geom_point call!")

This results in lots of code duplication for specifying what is essentially the same for every geom_point() call. It’s also really hard to add a legend now.

What is the alternative?

Whenever you find yourself adding multiple geom_* to show different groups, reshape your data

Gather the columns that are essentially representing the group and reshape the data into a format more suitable for plotting. Bonus: automatic correct labeling.

very_serious_data %>% 
  gather(key = "ratio", value = "score", mpg_hp, mpg_hp_c, mpg_hp_am ) %>% 
  ggplot(aes(first_letter, score, color = ratio))+
  geom_point(alpha = 2/3)+
  labs(caption = "fixing the antipattern")

And that’s it.

Mari also tells you it will work

State of the machine

At the moment of creation (when I knitted this document ) this was the state of my machine: click here to expand
sessioninfo::session_info()
## ─ Session info ───────────────────────────────────────────────────────────────
##  setting  value
##  version  R version 4.2.0 (2022-04-22)
##  os       macOS Big Sur/Monterey 10.16
##  system   x86_64, darwin17.0
##  ui       X11
##  language (EN)
##  collate  en_US.UTF-8
##  ctype    en_US.UTF-8
##  tz       Europe/Amsterdam
##  date     2022-11-09
##  pandoc   2.18 @ /Applications/RStudio.app/Contents/MacOS/quarto/bin/tools/ (via rmarkdown)
## 
## ─ Packages ───────────────────────────────────────────────────────────────────
##  package       * version date (UTC) lib source
##  assertthat      0.2.1   2019-03-21 [1] CRAN (R 4.2.0)
##  backports       1.4.1   2021-12-13 [1] CRAN (R 4.2.0)
##  blogdown        1.10    2022-05-10 [1] CRAN (R 4.2.0)
##  bookdown        0.27    2022-06-14 [1] CRAN (R 4.2.0)
##  broom           1.0.0   2022-07-01 [1] CRAN (R 4.2.0)
##  bslib           0.4.0   2022-07-16 [1] CRAN (R 4.2.0)
##  cachem          1.0.6   2021-08-19 [1] CRAN (R 4.2.0)
##  cellranger      1.1.0   2016-07-27 [1] CRAN (R 4.2.0)
##  cli             3.3.0   2022-04-25 [1] CRAN (R 4.2.0)
##  colorspace      2.0-3   2022-02-21 [1] CRAN (R 4.2.0)
##  crayon          1.5.2   2022-09-29 [1] CRAN (R 4.2.0)
##  DBI             1.1.3   2022-06-18 [1] CRAN (R 4.2.0)
##  dbplyr          2.2.1   2022-06-27 [1] CRAN (R 4.2.0)
##  digest          0.6.29  2021-12-01 [1] CRAN (R 4.2.0)
##  dplyr         * 1.0.9   2022-04-28 [1] CRAN (R 4.2.0)
##  ellipsis        0.3.2   2021-04-29 [1] CRAN (R 4.2.0)
##  evaluate        0.15    2022-02-18 [1] CRAN (R 4.2.0)
##  fansi           1.0.3   2022-03-24 [1] CRAN (R 4.2.0)
##  farver          2.1.1   2022-07-06 [1] CRAN (R 4.2.0)
##  fastmap         1.1.0   2021-01-25 [1] CRAN (R 4.2.0)
##  forcats       * 0.5.1   2021-01-27 [1] CRAN (R 4.2.0)
##  fs              1.5.2   2021-12-08 [1] CRAN (R 4.2.0)
##  gargle          1.2.0   2021-07-02 [1] CRAN (R 4.2.0)
##  generics        0.1.3   2022-07-05 [1] CRAN (R 4.2.0)
##  ggplot2       * 3.3.6   2022-05-03 [1] CRAN (R 4.2.0)
##  glue            1.6.2   2022-02-24 [1] CRAN (R 4.2.0)
##  googledrive     2.0.0   2021-07-08 [1] CRAN (R 4.2.0)
##  googlesheets4   1.0.0   2021-07-21 [1] CRAN (R 4.2.0)
##  gtable          0.3.0   2019-03-25 [1] CRAN (R 4.2.0)
##  haven           2.5.0   2022-04-15 [1] CRAN (R 4.2.0)
##  highr           0.9     2021-04-16 [1] CRAN (R 4.2.0)
##  hms             1.1.1   2021-09-26 [1] CRAN (R 4.2.0)
##  htmltools       0.5.3   2022-07-18 [1] CRAN (R 4.2.0)
##  httr            1.4.3   2022-05-04 [1] CRAN (R 4.2.0)
##  jquerylib       0.1.4   2021-04-26 [1] CRAN (R 4.2.0)
##  jsonlite        1.8.0   2022-02-22 [1] CRAN (R 4.2.0)
##  knitr           1.39    2022-04-26 [1] CRAN (R 4.2.0)
##  labeling        0.4.2   2020-10-20 [1] CRAN (R 4.2.0)
##  lifecycle       1.0.1   2021-09-24 [1] CRAN (R 4.2.0)
##  lubridate       1.9.0   2022-11-06 [1] CRAN (R 4.2.0)
##  magrittr        2.0.3   2022-03-30 [1] CRAN (R 4.2.0)
##  modelr          0.1.9   2022-08-19 [1] CRAN (R 4.2.0)
##  munsell         0.5.0   2018-06-12 [1] CRAN (R 4.2.0)
##  pillar          1.8.0   2022-07-18 [1] CRAN (R 4.2.0)
##  pkgconfig       2.0.3   2019-09-22 [1] CRAN (R 4.2.0)
##  purrr         * 0.3.5   2022-10-06 [1] CRAN (R 4.2.0)
##  R6              2.5.1   2021-08-19 [1] CRAN (R 4.2.0)
##  readr         * 2.1.2   2022-01-30 [1] CRAN (R 4.2.0)
##  readxl          1.4.0   2022-03-28 [1] CRAN (R 4.2.0)
##  reprex          2.0.1   2021-08-05 [1] CRAN (R 4.2.0)
##  rlang           1.0.6   2022-09-24 [1] CRAN (R 4.2.0)
##  rmarkdown       2.14    2022-04-25 [1] CRAN (R 4.2.0)
##  rstudioapi      0.13    2020-11-12 [1] CRAN (R 4.2.0)
##  rvest           1.0.2   2021-10-16 [1] CRAN (R 4.2.0)
##  sass            0.4.2   2022-07-16 [1] CRAN (R 4.2.0)
##  scales          1.2.0   2022-04-13 [1] CRAN (R 4.2.0)
##  sessioninfo     1.2.2   2021-12-06 [1] CRAN (R 4.2.0)
##  stringi         1.7.8   2022-07-11 [1] CRAN (R 4.2.0)
##  stringr       * 1.4.1   2022-08-20 [1] CRAN (R 4.2.0)
##  tibble        * 3.1.8   2022-07-22 [1] CRAN (R 4.2.0)
##  tidyr         * 1.2.0   2022-02-01 [1] CRAN (R 4.2.0)
##  tidyselect      1.1.2   2022-02-21 [1] CRAN (R 4.2.0)
##  tidyverse     * 1.3.2   2022-07-18 [1] CRAN (R 4.2.0)
##  timechange      0.1.1   2022-11-04 [1] CRAN (R 4.2.0)
##  tzdb            0.3.0   2022-03-28 [1] CRAN (R 4.2.0)
##  utf8            1.2.2   2021-07-24 [1] CRAN (R 4.2.0)
##  vctrs           0.4.1   2022-04-13 [1] CRAN (R 4.2.0)
##  withr           2.5.0   2022-03-03 [1] CRAN (R 4.2.0)
##  xfun            0.31    2022-05-10 [1] CRAN (R 4.2.0)
##  xml2            1.3.3   2021-11-30 [1] CRAN (R 4.2.0)
##  yaml            2.3.5   2022-02-21 [1] CRAN (R 4.2.0)
## 
##  [1] /Library/Frameworks/R.framework/Versions/4.2/Resources/library
## 
## ──────────────────────────────────────────────────────────────────────────────

Quick post - detect and fix this ggplot2 antipattern
by  | 
More posts of level: beginner 

See also