theme_gray ggplot2 Theme in R (6 Examples)

 

In this R tutorial you’ll learn how to change the ggplot2 theme to the theme_gray.

The content of the page is structured like this:

You’re here for the answer, so let’s get straight to the examples:

 

Example Data & Add-On Packages

We use the following data as basement for this R tutorial:

set.seed(842236)                           # Set random seed
data <- data.frame(x = rnorm(100),         # Create example data frame
                   y = rnorm(100),
                   group = LETTERS[1:4])
head(data)                                 # Print head of example data frame

 

table 1 data frame theme_gray ggplot2 theme

 

Have a look at the table that got returned after running the previous R code. It reveals the first six rows of the example data, and that our data is constituted of three columns. The columns x and y are numerical and the variable group has the character data type.

In case we want to use the functions of the ggplot2 package, we also have to install and load ggplot2:

install.packages("ggplot2")                # Install ggplot2 package
library("ggplot2")                         # Load ggplot2

In the following examples, we’ll draw different kinds of graphics using the theme_gray (also called theme_grey) of the ggplot2 package.

Note that this is the default theme of the ggplot2 package. For that reason, we could simply remove the theme_gray code from the examples below to produce the same output graphics.

Anyway, let’s draw some plots!

 

Example 1: Draw ggplot2 Scatterplot Using theme_gray()

ggplot(data,                               # theme_gray scatterplot
       aes(x = x,
           y = y,
           col = group)) +
  geom_point() +
  theme_gray()

 

r graph figure 1 theme_gray ggplot2 theme

 

Example 2: Draw ggplot2 Density Plot Using theme_gray()

ggplot(data,                               # theme_gray density plot
       aes(x = x,
           fill = group)) +
  geom_density(alpha = 0.5) +
  theme_gray()

 

r graph figure 2 theme_gray ggplot2 theme

 

Example 3: Draw ggplot2 Histogram Using theme_gray()

ggplot(data,                               # theme_gray histogram
       aes(x = x,
           fill = group)) +
  geom_histogram(alpha = 0.5,
                 position = "identity",
                 bins = 50) +
  theme_gray()

 

r graph figure 3 theme_gray ggplot2 theme

 

Example 4: Draw ggplot2 Barchart Using theme_gray()

ggplot(aggregate(y ~ group, data, sum),    # theme_gray barplot
       aes(x = group,
           y = y,
           fill = group)) +
  geom_bar(stat = "identity") +
  theme_gray()

 

r graph figure 4 theme_gray ggplot2 theme

 

Example 5: Draw ggplot2 Boxplot Using theme_gray()

ggplot(data,                               # theme_gray boxplot
       aes(x = x,
           fill = group)) +
  geom_boxplot() +
  theme_gray()

 

r graph figure 5 theme_gray ggplot2 theme

 

Example 6: Draw ggplot2 Line Plot Using theme_gray()

ggplot(data,                               # theme_gray line plot
       aes(x = x,
           y = y,
           col = group)) +
  geom_line() +
  theme_gray()

 

r graph figure 6 theme_gray ggplot2 theme

 

Video & Further Resources

Would you like to learn more about the ggplot2 package and its variety of functions, then please check out the video below, where you get a detailed introduction to the package and data visualization in R.

 

 

I have also created tutorials on how to use other ggplot2 themes in R:

Furthermore, you may have a look at the introductions to other add-on packages that provide extra themes for ggplot2 plots:

Also, you could have a look at the other tutorials on my website. Some tutorials are shown below.

 

To summarize: In this tutorial, I have shown how to apply the theme_gray function in the R programming language. Please let me know in the comments, in case you have further questions. Furthermore, please subscribe to my email newsletter to receive regular updates on the newest articles.

 

Subscribe to the Statistics Globe Newsletter

Get regular updates on the latest tutorials, offers & news at Statistics Globe.
I hate spam & you may opt out anytime: Privacy Policy.


Leave a Reply

Your email address will not be published. Required fields are marked *

Fill out this field
Fill out this field
Please enter a valid email address.

Top