Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
1. What is a violin plot?
A violin plot is a mirrored density plot that is rotated 90 degrees as shown in the picture. It depicts the distribution of numeric data.
2. When should you use a violin plot?
A violin plot is useful to compare the distribution of a numeric variable across different subgroups in a sample. For instance, the distribution of heights of a group of people could be compared across gender with a violin plot.
3. How to code a ggplot2 violin plot?
First, map the numeric variable whose distribution you would like to analyze to the x position aesthetic in ggplot2
. Second, map the variable you want to use to separate your sample in different groups to the y position aesthetic. This is done with aes(x = variable_of_interest, y = dimension)
inside the ggplot()
function. The last step is to add the geom_violin() layer.
To exemplify these steps, we will examine the capacity of Roman amphitheaters across different regions of the Roman Empire. The data for this comes from the cawd R package, maintained by Professor Sebastian Heath. This package contains several datasets about the Ancient World, including one about the Roman Amphitheaters. To install the package, use devtools::install_github("sfsheath/cawd")
.
After loading the package, use data()
to see the available data frames. We will be using the ramphs
dataset. It contains characteristics of the Roman amphitheaters. For this example, we will use the column 2 (title), column 7 (capacity) and column 8 (mod.country), which specifies the modern country where the amphitheater was located. We will also consider only the three modern countries with the largest number of amphitheaters – Tunisia, France or Italy. The code below loads and filters the relevant data.
content_copy Copy
We can further customize this plot to make it look better and fit this page theme. In the code below we improve the following aspects:
geom_violin(color = "#FF6885", fill = "#2E3031", size = 0.9)
changes in the color and size of line and fill of the violin plot;geom_jitter(width = 0.05, alpha = 0.2, color = "gray")
adds the data points jittered to avoid overplotting and show where the points are concentrated;coord_flip()
flips the two axis so that is more evident that a violin plot is simply a mirrored density curve;- the other geom layes add title, labels and a new theme to the plot.
content_copy Copy
Note that amphitheaters in the territory of modern Tunisia tended to have less variation in their capacity and most of them were below 10,000 spectators. On the other hand, amphitheaters in the Italian Peninsula exhibit greater variation.
Can you guess what the outlier on the very right of the Italian distribution is? Yes! It’s the Flavian Amphitheater at Rome, also known as the Colosseum, with an impressive capacity of 50,000 people. If you have any questions, please feel free to comment below!
4. Conclusions
- A violin plot, a type of density curve, is useful for exploring data distribution;
- Coding a ggplot2 violin plot can be easily accomplished with
geom_violin()
.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.