Lollipop charts are a relatively recent innovation in the world of data visualization. They are essentially an amalgamation of a bar chart and a scatter plot. With the stem of the ‘lollipop’ representing the bar, and the ‘lollipop’ itself symbolizing the point data of a scatter plot, this chart is becoming increasingly popular in displaying categorical data and has proven to be a worthy alternative to the traditional bar graph or pie chart. The benefits of using lollipop charts include readability and a better comparative analysis of data.
This tutorial will guide you on how to create a lollipop chart in R.
1. Installing and Loading Necessary Packages
To start, you need to install and load the necessary packages. In this case, we will use the ggplot2
package, which is a powerful package for creating static graphics and is based on the Grammar of Graphics, a comprehensive theory of graphics by Leland Wilkinson.
If the package is not installed on your machine, install it using:
install.packages("ggplot2")
Then load it using:
library(ggplot2)
2. Preparing the Data
The next step is data preparation. For this guide, we will use the mtcars
dataset available in R. The mtcars
dataset is a collection of various car attributes, such as miles per gallon (mpg), number of cylinders (cyl), horsepower (hp), etc.
To make a lollipop chart, we will first calculate the average miles per gallon (mpg) for each number of cylinders (cyl). We will use the aggregate()
function for this:
avg_mpg <- aggregate(mpg ~ cyl, mtcars, mean)
3. Creating a Basic Lollipop Chart
The basic lollipop chart can be created using geom_segment()
and geom_point()
functions in the ggplot2
package.
The geom_segment()
function is used to create the stems of the lollipops, and the geom_point()
function is used to create the heads of the lollipops. Here’s how you create the chart:
ggplot(avg_mpg, aes(x = factor(cyl), y = mpg)) +
geom_segment(aes(y = 0,
x = factor(cyl),
yend = mpg,
xend = factor(cyl)),
color = "blue",
size = 1) +
geom_point(color = "red", size = 3)

This will create a basic lollipop chart where the x-axis represents the number of cylinders and the y-axis represents the average mpg. The stems of the lollipops are blue, and the heads are red.
4. Enhancing the Lollipop Chart
While the basic lollipop chart is sufficient for displaying the data, there are numerous ways to enhance the chart to make it more visually appealing and informative.
- Add Labels to LollipopsTo add labels to the lollipops, you can use the
geom_text()
function:
ggplot(avg_mpg, aes(x = factor(cyl), y = mpg)) +
geom_segment(aes(y = 0,
x = factor(cyl),
yend = mpg,
xend = factor(cyl)),
color = "blue",
size = 1) +
geom_point(color = "red", size = 3) +
geom_text(aes(label = round(mpg, 1)),
vjust = -1.5,
color = "black")

This will add the average mpg values as labels above the lollipops.
Change Theme
The ggplot2
package provides various themes that can be used to change the appearance of the plot. For example, to use a white background, you can use the theme_bw()
function:
ggplot(avg_mpg, aes(x = factor(cyl), y = mpg)) +
geom_segment(aes(y = 0,
x = factor(cyl),
yend = mpg,
xend = factor(cyl)),
color = "blue",
size = 1) +
geom_point(color = "red", size = 3) +
geom_text(aes(label = round(mpg, 1)),
vjust = -1.5,
color = "black") +
theme_bw()

5. Interpreting the Lollipop Chart
The lollipop chart provides a visual representation of the average mpg for each number of cylinders. The height of the lollipop represents the average mpg, and the label above the lollipop provides the exact value.
From this chart, you can easily see that cars with fewer cylinders tend to have a higher average mpg, indicating better fuel efficiency. The chart also shows that there is a considerable difference in fuel efficiency between cars with 4 and 6 cylinders compared to those with 8 cylinders.
In conclusion, a lollipop chart is an effective tool for presenting categorical data in a way that is easy to understand and interpret. It combines the best features of bar charts and scatter plots to provide a visually appealing and informative data visualization. By following these steps, you can create a lollipop chart in R to present your data in a more effective and insightful way.