-
Book Overview & Buying
-
Table Of Contents
R Graphs Cookbook Second Edition - Second Edition
By :
A box plot is another important graph that summarizes the data along with the distribution. In this recipe, we will produce a box plot to visualize the data summary with the distribution using the ggplot2 implementation.
Recall ggplotdata for this recipe; we will use the disB numeric variable over the category of the sex variable in order to produce a box plot.
The primary code to produce a boxplot is as follows:
ggplot(data=ggplotdata,aes(y=disB,x=sex))+geom_boxplot()
The following figure shows us the visual output of the preceding code:

The main visualization is produced by the geom_boxplot() part of the function. The ggplot function takes the argument of the data frame that we want to use, along with the x- and y-axis variable names. The geom part maps the data and produces the actual visualization.
Change the font size
Change margin width
Change background colour