Chapter 6 Graphs

In our classes we primarily use the ggplot2 package for graphing.

Remember that you will need to load the package library(ggplot2).

As a package is is very flexible and provides many options that will let you do just about any visualization, but this can make it seem complicated when you are starting out learning it.

6.1 How ggplot works

Ggplot constructs a graph by building it up piece by piece, with the parts connected with + signs.

6.1.1 ggplot()

A ggplot always starts with the ggplot() function. This provides the name of the data set and sets up the background of your graph. Next one or more aes() functions define the x variable and the y variable (if needed). Notice how the three axes below differ depending on how many variables there are and what kind of variable they are. The aes() which is short for aesthetics.

library(ggplot2)

ggplot(iris)

ggplot(iris) +
  aes(x = Sepal.Length)

ggplot(iris) +
  aes(x = Sepal.Length) +
  aes(y = Sepal.Width)

ggplot(iris) +
   aes(x = Species) +
   aes( y = Sepal.Width)

6.1.2 Adding geom

To add data to the axes you use a “geom” that determines the type of display. The geom does not modify the axis, it adds data to it. To show this, let’s save the ggplot information and add to it.

Our first example is only for one variable. Often, you will want to add options such as binwidth. The last example shows how to use a slightly different approach to graph the cumulative distribution (ecdf).

graph1 <- ggplot(iris) +
             aes(x = Sepal.Length)
graph1 + geom_histogram()
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

graph1 + geom_dotplot(binwidth = .1)

graph1 + geom_bar()

graph1 + geom_density()

graph1 + stat_ecdf(geom = "step")

Our second example uses two interval variables, so has different possibilities than the first. The second one shows one way that geoms can be combined.

graph2 <- ggplot(iris) + 
            aes(x = Sepal.Length) +
            aes(y = Sepal.Width)

graph2 + geom_point()

graph2 + geom_point() + geom_smooth()
## `geom_smooth()` using method = 'loess'

graph2_with_species <- ggplot(iris) + 
                           aes(x = Sepal.Length) +
                           aes(y = Sepal.Width) +
                           aes(color = Species) +
                           geom_point()
graph2_with_species

This data includes two types of data. The last example shows how multiple geoms can be combined.

graph3 <- ggplot(iris) +
           aes(x = Species) +
           aes(y = Sepal.Width)   

graph3 + geom_point()

graph3 + geom_count()

graph3 + geom_jitter()

graph3 + geom_boxplot()

graph3 + geom_boxplot() + geom_jitter()

6.1.3 Add titles and labels, modify axes

There are many additional options that you can use. This document will just show how to add a title and labels and modify axes.

graph3 + geom_jitter() +
        ggtitle("Sepal Width by Species in the Iris Data") +
        labs(y="Sepal Width", x="Iris Species")  

The way to modify axes is to use scale_y_continuous and scale_x_continuous. These are very flexible and have many options. This section will show how to change or improve some of the previous plots.

# Remove irrelevant y axis values
graph1 + geom_dotplot(binwidth = .1) +
         scale_y_continuous(NULL, breaks = NULL)

# Use the same tick marks on the x axis match those on the y axis
graph2 + geom_point() + scale_x_continuous( breaks = seq(4, 8, .5), minor_breaks = waiver())

There are several websites that give detailed examples of more complex ways to create visualizations.

6.2 Common problems

Some of the most common problems in ggplot are the same as any other code in R, misspelling names, using the wrong graph for your data type, or having a problem with your tick marks.

Here are some errors that you are most likely to see when using ggplot.

6.2.1 unexpected symbol

This happens when you forget to put a + between the different parts of your plot.

graph3  geom_jitter()
Error: unexpected symbol in "graph3  geom_jitter"

6.2.2 invalid argument to unary operator

This happens if you have an extra +.

 graph3 + + geom_jitter()
Error in +geom_jitter() : invalid argument to unary operator

6.2.3 Error: unexpected ‘)’

This happens if you have an extra closing parenthesis.

graph2 <- ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)))
Error: unexpected ')' in "graph2 <- ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width)))"