Hands-on Exercise 2

Author

Zachary Wong

Published

January 17, 2024

Modified

January 21, 2024

Beyond ggplot2 Fundamentals

Overview

In this chapter, we will be using several ggplot2 extensions to create more elegant and effective statistical graphics.

By the end of the exercise, we will be able to:

  • control the placement of annotation on a graph by using functions provided in ggrepel package,

  • create professional publication quality figure by using functions provided in ggthemes and hrbrthemes packages,

  • plot composite figure by combining ggplot2 graphs by using patchwork package.

Getting Started

Installing and loading the required libraries

In this exercise, beside tidyverse, four R packages will be used. They are:

  • ggrepel: an R package provides geoms for ggplot2 to repel overlapping text labels.

  • ggthemes: an R package provides some extra themes, geoms, and scales for ‘ggplot2’.

  • hrbrthemes: an R package provides typography-centric themes and theme components for ggplot2.

  • patchwork: an R package for preparing composite figure created using ggplot2.

Code chunk below will be used to check if these packages have been installed and also will load them onto your working R environment.

pacman::p_load(ggrepel, patchwork, ggthemes, hrbrthemes, tidyverse)

Importing data

For the purpose of this exercise, a data file called Exam_data will be used. It consists of year end examination grades of a cohort of primary 3 students from a local school. It is in csv file format.

The code chunk below imports exam_data.csv into R environment by using read_csv() function of readr package. readr is one of the tidyverse package.

exam_data <- read_csv("data/Exam_data.csv")

There are a total of seven attributes in the exam_data tibble data frame. Four of them are categorical data type and the other three are in continuous data type.

  • The categorical attributes are: ID, CLASS, GENDER and RACE.

  • The continuous attributes are: MATHS, ENGLISH and SCIENCE.

Beyond ggplot2 Annotation:ggrepel

One of the challenge in plotting statistical graph is annotation, especially with large number of data points.

ggplot(data=exam_data, 
       aes(x= MATHS, 
           y=ENGLISH)) +
  geom_point() +
  geom_smooth(method=lm, 
              size=0.5) +  
  geom_label(aes(label = ID), 
             hjust = .5, 
             vjust = -.5) +
  coord_cartesian(xlim=c(0,100),
                  ylim=c(0,100)) +
  ggtitle("English scores versus Maths scores for Primary 3")

ggrepel  is an extension of ggplot2 package which provides geoms for ggplot2 to repel overlapping text as in our examples on the right.

We simply replace geom_text() by geom_text_repel() and geom_label() by geom_label_repel.

Working with ggrepel

ggplot(data=exam_data, 
       aes(x= MATHS, 
           y=ENGLISH)) +
  geom_point() +
  geom_smooth(method=lm, 
              size=0.5) +  
  geom_label_repel(aes(label = ID), 
                   fontface = "bold") +
  coord_cartesian(xlim=c(0,100),
                  ylim=c(0,100)) +
  ggtitle("English scores versus Maths scores for Primary 3")

Beyond ggplot2 Themes

ggplot2 comes with eight built-in themes, they are:

theme_gray()theme_bw()theme_classic()theme_dark()theme_light()theme_linedraw()theme_minimal(), and theme_void().

ggplot(data=exam_data, 
             aes(x = MATHS)) +
  geom_histogram(bins=20, 
                 boundary = 100,
                 color="grey25", 
                 fill="grey90") +
  theme_light() +
  ggtitle("Distribution of Maths scores") 

Refer to this link to learn more about ggplot2 Themes

Working with ggtheme package

ggthemes provides ‘ggplot2’ themes that replicate the look of plots by Edward Tufte, Stephen Few, FivethirtyeightThe Economist, ‘Stata’, ‘Excel’, and The Wall Street Journal, among others.

In the example below, The Economist white theme is used

ggplot(data=exam_data, 
             aes(x = MATHS)) +
  geom_histogram(bins=20, 
                 boundary = 100,
                 color="grey25", 
                 fill="grey90") +
  theme_economist_white() +
  ggtitle("Distribution of Maths scores") 

It also provides some extra geoms and scales for ‘ggplot2’. Consult this vignette to learn more.

Working with hrbrthemes package

hrbrthemes package provides a base theme that focuses on typographic elements, including where various labels are placed as well as the fonts that are used.

ggplot(data=exam_data, 
             aes(x = MATHS)) +
  geom_histogram(bins=20, 
                 boundary = 100,
                 color="grey25", 
                 fill="grey90") +
  ggtitle("Distribution of Maths scores") +
  theme_ipsum()

The second goal centers around productivity for a production workflow. In fact, this “production workflow” is the context for where the elements of hrbrthemes should be used. Consult this vignette to learn more.

ggplot(data=exam_data, 
             aes(x = MATHS)) +
  geom_histogram(bins=20, 
                 boundary = 100,
                 color="grey25", 
                 fill="grey90") +
  ggtitle("Distribution of Maths scores") +
  theme_ipsum(axis_title_size = 18,
              base_size = 15,
              grid = "Y")
What can we learn from the code chunk above?
  • axis_title_size argument is used to increase the font size of the axis title to 18,

  • base_size argument is used to increase the default axis label to 15, and

  • grid argument is used to remove the x-axis grid lines.

Beyond Single Graph

It is not unusual that multiple graphs are required to tell a compelling visual story. There are several ggplot2 extensions provide functions to compose figure with multiple graphs. In this section, you will learn how to create composite plot by combining multiple graphs. First, let us create three statistical graphics by using the code chunk below.

p1 <- ggplot(data=exam_data, 
             aes(x = MATHS)) +
  geom_histogram(bins=20, 
                 boundary = 100,
                 color="grey25", 
                 fill="grey90") + 
  coord_cartesian(xlim=c(0,100)) +
  ggtitle("Distribution of Maths scores")

p2 <- ggplot(data=exam_data, 
             aes(x = ENGLISH)) +
  geom_histogram(bins=20, 
                 boundary = 100,
                 color="grey25", 
                 fill="grey90") +
  coord_cartesian(xlim=c(0,100)) +
  ggtitle("Distribution of English scores")

p3 <- ggplot(data=exam_data, 
             aes(x= MATHS, 
                 y=ENGLISH)) +
  geom_point() +
  geom_smooth(method=lm, 
              size=0.5) +  
  coord_cartesian(xlim=c(0,100),
                  ylim=c(0,100)) +
  ggtitle("English scores versus Maths scores for Primary 3")

Creating Composite Graphics: pathwork methods

There are several ggplot2 extension’s functions support the needs to prepare composite figure by combining several graphs such as grid.arrange() of gridExtra package and plot_grid() of cowplot package. In this section, I am going to shared with you an ggplot2 extension called patchwork which is specially designed for combining separate ggplot2 graphs into a single figure.

Patchwork package has a very simple syntax where we can create layouts super easily. Here’s the general syntax that combines:

  • Two-Column Layout using the Plus Sign +.

  • Parenthesis () to create a subplot group.

  • Two-Row Layout using the Division Sign /

Combining multiple ggplot2 graphs

Figure in the tabset below shows a composite of two histograms created using patchwork. Note how simple the syntax used to create the plot!

p1 + p2

We can plot more complex composite by using appropriate operators. For example, the composite figure below is plotted by using:

  • “|” operator to stack two ggplot2 graphs,
  • /” operator to place the plots beside each other,
  • “()” operator the define the sequence of the plotting.
(p1 / p2) | p3

To learn more about, refer to Plot Assembly.

Creating a composite figure with tag

In order to identify subplots in text, patchwork also provides auto-tagging capabilities as shown in the figure below.

((p1 / p2) | p3) + 
  plot_annotation(tag_levels = 'I')

Creating figure with insert

p3 + inset_element(p2, 
                   left = 0.02, 
                   bottom = 0.7, 
                   right = 0.5, 
                   top = 1)

Creating a composite figure by using patchwork and ggtheme

Figure below is created by combining patchwork and theme_economist() of ggthemes package discussed earlier.

patchwork <- (p1 / p2) | p3
patchwork & theme_economist() + theme(plot.title = element_text(size= 8))

Reference