Open In App

Box plot in R using ggplot2

In this article, we are going to create a Boxplot with various functionality in R programming language using the ggplot2 package. 

For data distributions, you may require more information than central tendency values (median, mean, mode). To analyze data variability, you need to know how dispersed the data are. Well, a Box plot is a graph that illustrates the distribution of values in data. Box plots are commonly used to show the distribution of data in a standard way by presenting five summary values. The list below summarizes the minimum, Q1 (First Quartile), median, Q3 (Third Quartile), and maximum values.  Summarizing these values can provide us with information about our outliers and their values.  



In ggplot2, geom_boxplot() is used to create a boxplot.

Syntax: geom_boxplot( mapping = NULL, data = NULL, stat = “identity”, position = “identity”, …, outlier.colour = NULL, outlier.color = NULL, outlier.fill = NULL, outlier.shape = 19, outlier.size = 1.5, notch = FALSE,na.rm = FALSE, show.legend = FALSE, inherit.aes = FALSE)



The dataset in use: Crop_recommendation

Let us first create a regular boxplot, for that, we first have to import all the required libraries and datasets in use. Then simply put all the attributes to plot by in ggplot() function along with geom_boxplot.

Example:




library(ggplot2)
 
# Create the dataset or load the dataset
# for the chart
Dataset <- c(17, 32, 8, 53, 1,45,56,678,23,34)
Dataset
 
# loading data set and storing it in ds variable
ds <- read.csv(
 
# create a boxplot by using geom_boxplot() function
# of ggplot2 package
crop=ggplot(data=ds, mapping=aes(x=label, y=temperature))+geom_boxplot()
crop

 Output

Box plot in R using ggplot2

Adding mean value to the boxplot

Mean value can also be added to a boxplot, for that we have to specify the function we are using, within stat_summary(). This function is used to add new summary values and add these summary values to the plot. By using this function you don’t need to calculate the mean values before plotting.

Syntax: 

stat_summary( fun, geom)

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv(
 
# add mean to ggplot2 boxplot
ggplot(ds, aes(x = label, y = temperature, fill = label)) +
  geom_boxplot() +
  stat_summary(fun = "mean", geom = "point", shape = 8,
               size = 2, color = "white")

Output:

Box plot in R using ggplot2

Change legend position of Boxplot:

Now let us discuss the legend position in Boxplot using theme() function. We can change the legend position to top or bottom, or you can remove the legend position in a boxplot. It is possible to customize plot components such as titles, labels, fonts, backgrounds, gridlines, and legends by using themes. Plots can be customized by using themes. You can modify the theme of a single plot using the theme() method or you can modify the active theme, which will affect all subsequent plots, by calling theme_update().

Syntax:

theme( line, rect, text, title, aspect.ratio, axis.title, axis.title.x, axis.title.x.top, axis.title.x.bottom, axis.title.y, axis.title.y.left, axis.title.y.right, axis.text, axis.text.x, axis.text.x.top, axis.text.x.bottom, axis.text.y, axis.text.y.left, ……, validate = TRUE)

On this function, if you set legend.position argument to either top or bottom the position will change.

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
# change the legend position in R using ggplot2
ggplot(ds, aes(x = label, y = temperature, fill = label)) +
  geom_boxplot() +
  theme(legend.position = "top")

Output:

Box plot in R using ggplot2

Horizontal Boxplot using ggplot2 in R

Boxplots can also be placed horizontally using coord_flip() function. This function just switches the x and y-axis.

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
# Creating a Horizontal Boxplot using ggplot2 in R
ggplot(ds, aes(x = label, y = temperature, fill = label)) +
  geom_boxplot() +
  coord_flip()

Output:

Box plot in R using ggplot2

Change box plot line colors 

1) default

Use the command color=label to add color to the outline of the bars. 

Syntax:

color=label

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv(
 
# Change box plot line colors by groups
crop2<-ggplot(ds, aes(x=label, y=temperature, color=label)) +
  geom_boxplot()
crop2

Output:

Box plot in R using ggplot2

2) Manually

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
# Change box plot line colors by groups
crop2<-ggplot(ds, aes(x=label, y=temperature, color=label)) +
  geom_boxplot()
crop2
  
# Now, it is also possible to change line colors manually
crop2+scale_color_manual(values=c("#999999", "#E69F00",
                                  "#56B4E9","#999999","Red",
                                  "green","yellow"))

Output:

Box plot in R using ggplot2

Syntax:

scale_color_brewer(palette)

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv(
 
# Change box plot line colors by groups
crop2<-ggplot(ds, aes(x=label, y=temperature, color=label)) +
  geom_boxplot()
crop2
 
# for Using brewer color palettes
crop2+scale_color_brewer(palette="Dark2")

Output:

Box plot in R using ggplot2

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
# Change box plot line colors by groups
crop2<-ggplot(ds, aes(x=label, y=temperature, color=label)) +
  geom_boxplot()
 
# for using grey scale
crop2 + scale_color_grey() + theme_classic()

Output:

Box plot in R using ggplot2

Fill the boxplot with color 

1) Default: For filling the boxplot with your choice of color then you can use the fill attribute command to add colors inside the geom_boxplot() function. The fill will be under geom_boxplot( ) as it is variable in this case.

Syntax:

fill=’color’

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
# Now fill the boxplot with choice of your color
crop1=ggplot(data=ds, mapping=aes(x=label, y=temperature))+
geom_boxplot(fill='green')
crop1

Output:

Box plot in R using ggplot2

For filling the boxplot color by default you just need to include fill attribute in aes() function within ggplot(). The fill will be inside aes( ) under ggplot( ) as it is variable in this case.

Syntax:

fill=label

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
# Change Colors of a ggplot2 Boxplot in R
crop3<-ggplot(ds, aes(x = label, y = temperature, fill = label)) +
  geom_boxplot(outlier.colour="black", outlier.shape=16, outlier.size=2)
 
crop3

Output:

Box plot in R using ggplot2

2) Manually: If you want to change boxplot colors manually then you can use three functions scale_fill_manual(), scale_fill_brewer() and scale_fill_grey() according to your choice.

Syntax:

scale_fill_manual(values)

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv(
 
crop3<-ggplot(ds, aes(x = label, y = temperature, fill = label)) +
  geom_boxplot(outlier.colour="black", outlier.shape=16, outlier.size=2)
 
crop3+scale_fill_manual(values=c("#999999", "#E69F00", "#56B4E9",
                                 "#999999","Red","green","yellow"))

Output:

Box plot in R using ggplot2

Syntax:

scale_fill_brewer(palette)

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
crop3<-ggplot(ds, aes(x = label, y = temperature, fill = label)) +
  geom_boxplot(outlier.colour="black", outlier.shape=16, outlier.size=2)
 
crop3+scale_fill_brewer(palette="Dark1")

Output:

Box plot in R using ggplot2

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
crop3<-ggplot(ds, aes(x = label, y = temperature, fill = label)) +
  geom_boxplot(outlier.colour="black", outlier.shape=16, outlier.size=2)
 
# for using grey scale
crop3 + scale_fill_grey() + theme_classic()

Output:

Box plot in R using ggplot2

Adding jitters in boxplots

Jitters are very useful to handle over-plotting problems caused by discrete datasets. You can also adjust the positions of the jitters too and for doing so you just need to set the position attribute within geom_jitter(). You can also change shape, size of a dot by using the size and shape argument in ggplot jitter.

Syntax:

geom_jitter(mapping = NULL, data = NULL, stat = “identity”, position = “jitter”, …, width = NULL, height = NULL, na.rm = FALSE, show.legend = NA, inherit.aes = TRUE)

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
ggplot(ds, aes(x=label, y=temperature)) +
  geom_boxplot()+
  geom_jitter(position=position_jitter(0.2))

Output:

Box plot in R using ggplot2

Notched box plot

For adding notch boxplot you just need to set the notch attribute as TRUE within geom_boxplot().

Example:




library(ggplot2)
 
# loading data set and storing it in ds variable
ds <- read.csv("c://crop//archive//Crop_recommendation.csv", header = TRUE)
 
# Add notched box plot
ggplot(ds, aes(x=label, y=temperature)) +
  geom_boxplot(notch = TRUE)+
  geom_jitter(position=position_jitter(0.2))

Output:

Box plot in R using ggplot2


Article Tags :