Draw Multiple Boxplots in One Graph in R Side-by-Side (4 Examples)
In this tutorial you’ll learn how to plot several boxplots side-by-side in the same graphic in the R programming language.
The article will contain these content blocks:
Let’s start right away!
Creation of Example Data
First, we’ll need to create some data that we can use in the following examples:
set.seed(75829547) # Create example data data <- data.frame(A = rnorm(1000), B = runif(1000), C = rpois(1000, 3)) head(data) # Head of example data # A B C # 1 0.53802755 0.23042233 3 # 2 -0.81263292 0.03925386 3 # 3 0.15503948 0.37912312 3 # 4 0.73903916 0.51420032 3 # 5 -0.07919366 0.01956273 2 # 6 -1.56211181 0.92004033 2 |
set.seed(75829547) # Create example data data <- data.frame(A = rnorm(1000), B = runif(1000), C = rpois(1000, 3)) head(data) # Head of example data # A B C # 1 0.53802755 0.23042233 3 # 2 -0.81263292 0.03925386 3 # 3 0.15503948 0.37912312 3 # 4 0.73903916 0.51420032 3 # 5 -0.07919366 0.01956273 2 # 6 -1.56211181 0.92004033 2
The previously shown output of the RStudio console shows the structure of our example data – It consists of three numeric columns A, B, and C. Each of these variables should be drawn as separate boxplot in the same graphic window in R.
Example 1: Drawing Multiple Boxplots Using Base R Graphics
In Example 1, I’ll illustrate how to use the basic installation of the R programming language to plot several boxplots in the same graph. For this, we simply need to insert the name of our data frame into the boxplot function:
boxplot(data) # Applying boxplot function |
boxplot(data) # Applying boxplot function
As shown in Figure 1, we created a plot showing each of our variables as different boxplot with the previous syntax.
The previous R syntax is very simple. However, the output looks not really pretty yet. In the following examples I’ll therefore explain how to create more advanced boxplot graphics with the ggplot2 and lattice packages in R.
If you want to learn more about improving Base R boxplot graphics, you may have a look here.
Example 2: Drawing Multiple Boxplots Using ggplot2 Package
In Example 2, I’ll show how to use the functions of the ggplot2 package to create a graphic consisting of multiple boxplots.
To draw such a plot with the ggplot2 package, we need data in long format and we can convert our example data to long format using the reshape package.
If we want to apply the functions of the reshape2 package, we first have to install and load reshape2:
install.packages("reshape2") # Install reshape2 package library("reshape2") # Load reshape2 |
install.packages("reshape2") # Install reshape2 package library("reshape2") # Load reshape2
Now, we can convert our data to long format using the melt function provided by the reshape2 package:
data_long <- melt(data) # Reshaping data frame head(data_long) # Head of reshaped data frame # variable value # 1 A 0.53802755 # 2 A -0.81263292 # 3 A 0.15503948 # 4 A 0.73903916 # 5 A -0.07919366 # 6 A -1.56211181 |
data_long <- melt(data) # Reshaping data frame head(data_long) # Head of reshaped data frame # variable value # 1 A 0.53802755 # 2 A -0.81263292 # 3 A 0.15503948 # 4 A 0.73903916 # 5 A -0.07919366 # 6 A -1.56211181
If we want to draw boxplots with the ggplot2 package, we also need to install and load ggplot2:
install.packages("ggplot2") # Install ggplot2 package library("ggplot2") # Load ggplot2 |
install.packages("ggplot2") # Install ggplot2 package library("ggplot2") # Load ggplot2
Finally, we can draw all boxplots to a ggplot2 graphic:
ggplot(data_long, aes(x = variable, y = value)) + # Applying ggplot function geom_boxplot() |
ggplot(data_long, aes(x = variable, y = value)) + # Applying ggplot function geom_boxplot()
The output of the previously shown code is illustrated in Figure 2: A ggplot2 graph containing multiple boxplots side-by-side.
Example 3: Drawing Multiple Boxplots Using lattice Package
Another popular package for drawing boxplots is the lattice package.
If we want to use the functions of the lattice package, we first need to install and load lattice:
install.packages("lattice") # Install lattice package library("lattice") # Load lattice package |
install.packages("lattice") # Install lattice package library("lattice") # Load lattice package
Now, we can apply the bwplot function to draw our boxplots. Note that we are using the long data frame that we have created in the previous example:
bwplot(value ~ variable, data_long) # Applying bwplot function |
bwplot(value ~ variable, data_long) # Applying bwplot function
As illustrated in Figure 3, we created a graphic with multiple boxplots with the previous code.
Example 4: Drawing Multiple Boxplots for Each Group Side-by-Side
So far, we have drawn only one boxplot for each variable of our example data. However, it is possible to add another layer by drawing multiple boxplots for each group of a variable.
Let’s do this in R!
First, we need some example data:
data(iris) # Loading iris flower data set head(iris) # Head of iris data # Sepal.Length Sepal.Width Petal.Length Petal.Width Species # 1 5.1 3.5 1.4 0.2 setosa # 2 4.9 3.0 1.4 0.2 setosa # 3 4.7 3.2 1.3 0.2 setosa # 4 4.6 3.1 1.5 0.2 setosa # 5 5.0 3.6 1.4 0.2 setosa # 6 5.4 3.9 1.7 0.4 setosa |
data(iris) # Loading iris flower data set head(iris) # Head of iris data # Sepal.Length Sepal.Width Petal.Length Petal.Width Species # 1 5.1 3.5 1.4 0.2 setosa # 2 4.9 3.0 1.4 0.2 setosa # 3 4.7 3.2 1.3 0.2 setosa # 4 4.6 3.1 1.5 0.2 setosa # 5 5.0 3.6 1.4 0.2 setosa # 6 5.4 3.9 1.7 0.4 setosa
As you can see based on the previous output of the RStudio console, our example data is the popular iris flower data set which consists of four numeric variables and the Species grouping variable.
I’m going to use the ggplot2 package in this example. For that reason, we need to reshape the iris data frame from wide to long format:
iris_long <- melt(iris, id = "Species") # Reshaping iris data head(iris_long) # Head of reshaped iris data # variable value # 1 A 0.53802755 # 2 A -0.81263292 # 3 A 0.15503948 # 4 A 0.73903916 # 5 A -0.07919366 # 6 A -1.56211181 |
iris_long <- melt(iris, id = "Species") # Reshaping iris data head(iris_long) # Head of reshaped iris data # variable value # 1 A 0.53802755 # 2 A -0.81263292 # 3 A 0.15503948 # 4 A 0.73903916 # 5 A -0.07919366 # 6 A -1.56211181
Now, we can draw our ggplot2 boxplot graph as shown below. Note that we are specifying the color argument to be equal to our grouping column Species:
ggplot(iris_long, aes(x = variable, y = value, color = Species)) + # ggplot function geom_boxplot() |
ggplot(iris_long, aes(x = variable, y = value, color = Species)) + # ggplot function geom_boxplot()
As shown in Figure 4, the previous R syntax created a graphic that shows a boxplot for each factor level group of each variable of our data frame.
Video, Further Resources & Summary
Do you want to know more about boxplots in R? Then you may watch the following video of my YouTube channel. I explain the content of this tutorial in the video.
Please accept YouTube cookies to play this video. By accepting you will be accessing content from YouTube, a service provided by an external third party.
If you accept this notice, your choice will be saved and the page will refresh.
In addition, you might want to have a look at the related articles on this homepage. A selection of interesting posts about graphics in R can be found below.
- Draw Multiple Overlaid Histograms with ggplot2 Package
- Draw Multiple Graphs & Lines in Same Plot
- Draw Multiple lattice Plots in One Window
- Graphics in R
- Introduction to R
In summary: You learned in this article how to create a graph containing multiple boxplots with one or multiple factor labels in the R programming language. If you have additional questions, tell me about it in the comments section below.
Statistics Globe Newsletter
15 Comments. Leave new
Hi, in example #4 is there anyway to edit the category labels? (i.e. Sepal.Length to Sepal Length)
Hey,
This is explained in Example 2 of this tutorial.
Regards,
Joachim
Thank you Joachim for these useful and straightforward examples
Hey Cassio,
Thanks a lot for the very kind feedback! Glad you like the tutorials.
Regards,
Joachim
Thanks!!! Joachim,
very nice job, and helpful
Thank you very much, glad it was useful! 🙂
Hey, thank you for your tutorial, I have a question.
I’m trying to create multiple boxplots, but the number of lines for each boxplot isn’t the same.
Since I don’t have the same number of observations, I can’t create a data.frame to work with. Is there any way I could bypass this issue with R?
Hey Nazeleternel,
Thank you for your comment!
Could you please share your code and illustrate the first few rows of your data, i.e. what is returned when you run head(your_data) ?
Regards,
Joachim
Thanks for your speedy response!
Here is the kind of data I am using:
head(J3PBS)
Label J Surface.de.la.coupe Surface.de.l.epithelium
4 PBS2-1-2_Stitch 3 364564058 12176663
5 PBSA3-1-1-0504_Stitch 3 401801863 12268656
6 PBSA4-1-2-0504_Stitch 3 325869468 13200887
Surface.des.spots.dans.la.coupe Somme.Intensite.des.spots.dans.la.coupe
4 1435501.6 475960.2
5 2639522.4 1388104.4
6 464288.6 195975.8
Surface.des.spots.dans.l.epithelium Somme.Intensite.des.spots.dans.l.epithelium
4 252540.2 82355.78
5 305722.9 119701.37
6 177350.3 53434.98
Surface.spot.total Surface.spot.epith Surface.epith.tot Int.spot.total
4 0.003937584 0.02073969 5.267110 0.001305560
5 0.006569214 0.02491902 3.793303 0.003454699
6 0.001424769 0.01343473 9.429408 0.000601393
Int.spot.epith Int.epith.tot
4 0.006763411 5.180468
5 0.009756681 2.824177
6 0.004047833 6.730756
> head(J5PBS)
Label J Surface.de.la.coupe Surface.de.l.epithelium
7 PBSA5-1-1-0504_Stitch 5 466895969 8416151
8 PBSA6-1-2-0504_Stitch 5 319552689 15807924
Surface.des.spots.dans.la.coupe Somme.Intensite.des.spots.dans.la.coupe
7 2061096 1530003
8 10060403 6795052
Surface.des.spots.dans.l.epithelium Somme.Intensite.des.spots.dans.l.epithelium
7 206509.4 110852.5
8 2515923.5 2059452.7
Surface.spot.total Surface.spot.epith Surface.epith.tot Int.spot.total
7 0.004414465 0.02453728 5.558380 0.003276968
8 0.031482766 0.15915585 5.055332 0.021264261
Int.spot.epith Int.epith.tot
7 0.0131714 4.019385
8 0.1302798 6.126701
The issue is, I have 3 sets of data, and with the full data, I’ll end up with some having 4 rows, and others 5 rows or even 3 rows.
What I want to do is obtain boxplots for one given column for each the 3 sets of data in one figure.
Thanks again for your help
Just realized I didn’t share the code that doesn’t work!
It’s when I want to create a data.frame with the data from the same column from each set to have it in the same data.frame to then boxplot it. Since I don’t have the same nulber of rows, R doesn’t allow me to do so.
DataPBSSurface.total <- data.frame(J1 = J1PBS$Surface.spot.total ,
J3 = J3PBS$Surface.spot.total ,
J5 = J5PBS$Surface.spot.total)
I think the problem is that you try to create your data in wide format, but it should be organized in long format.
Have a look at the following example code:
Make sure that your data is formatted as DataPBSSurface.total in the previous example. You may also have a look here for more info on wide and long data.
Regards,
Joachim
Thanks for the usefull coaching and tutorials. They really matters
Hello Jaabir,
Thank you for such nice words! We are always here to help 🙂
Regards,
Cansu
Hi,
can you help me further with this? I am comparing two variables and one of them has 4 levels but i only want to pick 2 of the 4 levels to compare. how do i do this?
boxplot(inc~region, data=state)
region has 4 levels but i only want to compare 2.
Thank you,
Hello John,
What about subsetting the data as shown in our tutorial: Subset Data Frame Rows by Logical Condition in R, then plot the boxplot?
Regards,
Cansu