Neil Currie Profile picture
Jul 21 β€’ 16 tweets β€’ 9 min read
How to create dumbbell plots with ggplot2

Impress clients, communicate complex insights simply and up your data vis game.

πŸ‘‡πŸ§΅

#rstats #datavis Image
Dumbbell plots are a great way of communicating information that can be grouped then split into two points.

I used one for last weeks TidyTuesday

github.com/neilcuz/tidytu…

But making them can be a little tricky.

I can show you how step-by-step.

1/15
Dumbbell plots can be created using 2 ggplot2 building blocks: geom_point and geom_line.

So let's start building from the ground up with some examples in each before combining to make a dumbbell plot.

2/15
1. geom_point

Plots in ggplot2 start with the ggplot function. We then add + successive layers with geometry functions before customising the appearance further.

geom_point is used to create scatter plots and other point charts.

3/15 library(ggplot2) library(dp...A scatterplot of value1 aga...A point plot of time_period...A point plot of group1 agai...
Notice I placed the x and y variables inside the aes function.

I found aesthetics hard to understand at first - you read lots of talk of mapping variables and visual cues which didn't make sense to me then.

But I think there is an easier way to understand them.

4/15
Anything on a chart (a line, point, colour, shape, size etc) which changes with the data, place inside aes().

Anything which doesn't vary with data (a colour, shape, size, etc), place outside aes().

It's easier to see with an example.

5/15
In plot 1 colour is placed inside aes so the colour varies with the data. Here it corresponds to the group1 value since colour = group1.

In the second plot colour is placed outside aes. The colour is red regardless of the data values.

6/15 # Colour inside aes - it va...A scatterplot of value1 aga...A scatterplot of value1 aga...
2. geom_line

geom_line works similarly to geom_point.

You can add 1 or more lines and easily combine with geom_point.

7/15 # Some more dummy data cels...A line chart of high temper...A line chart of high and lo...A line chart of high and lo...
The dummy celsius dataset was in what is known as wide format.

We can put this into long format using pivot_longer from tidyr. Long format will be important for our dumbbell plot. There is now a row for high and for low for each month.

8/15 celsius_long <- pivot_longe...A snapshot of the celsius d...A snapshot of the celsius d...
From long format we can replicate the last plot with similar code.

Notice to get the correct colours I have created a named vector called chart colours and passed it to scale_colour_manual. This approach even throws in a legend.

Now we are ready for the dumbbell plot.

9/15 chart_colours <- c("hi...The previous line chart rec...
3. Dumbbell plots

We know about geom_point, geom_line, aes and long format. We can combine these to make a dumbbell plot.

Let's start with the points.

10/15
We will group our data by high and low temperature with a point for the value. The y axis will have the months.

The first stab at it is not bad but the months go from December to January.

We can sort this by reordering the month name factor level.

11/15 # First stab at the points ...The first go at doing the p...Image
Next we add the lines.

Here we use the group argument and place it inside aes. This will group the lines by month_name. The other aes arguments are the same.

The first attempt is ok but the lines overlap the points. Not to worry, we can swap them.

12/15 # Add the lines  ggplot(dat...The dumbbell plot now has l...By reversing the order of t...
Finally we can make some tweaks to make the chart look better. We could do plenty more but the objective here was to learn about dumbbell plot, not the ins and outs of good design.

13/15 # Some tweaks to make it lo...The final dumbbell plot.
TL;DR

1. Dumbbell plots are a great way to communicate insights.
2. These can be created with ggplot2 by combining geom_line and geom_point.
3. You need to know a bit about aesthetics and long format data.

14/15
Thanks for reading, if you liked this thread follow me @neilgcurrie for mainly R and data science stuff (though I make no promises).

See the README file to get the code for this thread and others:

github.com/neilcuz/threads

15/15

β€’ β€’ β€’

Missing some Tweet in this thread? You can try to force a refresh
γ€€

Keep Current with Neil Currie

Neil Currie Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @neilgcurrie

Jul 15
Fed up of using spreadsheets but can't escape them?

How to build spreadsheets directly from R (so you can save time and reduce errors) πŸ‘‡πŸ§΅

#rstats #datascience #excel
In this thread I will cover how to:

- create a workbook with openxlsx
- add data
- add formulas
- format cells
- format the sheet
- conditional formatting.

All in an R script.

Let's go.

1/13
I don't know about you but over the years my dislike of spreadsheets has grown. I have seen some horrors in my time.

They are messy, slow and not reproducible. Being manual they are also error prone.

And it just so happens the entire world is built on them.

2/13
Read 13 tweets
Jul 13
If you want to speed up your code, learning R's timing functions are essential.

A short thread on timing your code in R πŸ‘‡πŸ§΅

#rstats #datascience
1. Sys.time

Sys.time is a base R function which returns the current time.

You can save the current time to a variable and, with some simple maths, figure out how much time has passed. library(tidyverse) library(tictoc) library(microbenchmark)
2. tictoc

The tictoc package works in the same way as above but is more elegant.

You can setup different timers with a string name to keep track of them. # similar to the Sys.time approach  tic()  diamonds |>    mu
Read 8 tweets
Jul 5
Ever heard of parallel processing but not known where to start? Want your code to run faster with a simple trick?

A short thread introducing the furrr package in RπŸ‘‡πŸ§΅

#rstats #datascience
The furrr package is based on the mapping functions in the purrr package.

In lots of cases these functions can replace the use of for loops in R, simplifying your code.

R for Data Science has a great chapter on the purrr package:

r4ds.had.co.nz/iteration.html
In the purrr package processing is done in the standard, sequential way.

But furrr has some tricks up it's sleeve to speed up your code by taking advantage of parallel processing.
Read 13 tweets
Jun 30
Ever wondered how to join big data in R?

A thread on using Spark in RπŸ‘‡πŸ§΅

#rstats #spark #datascience
This is thread # 3 in a series exploring using Spark in R with the sparklyr package. You can find the others here:

# 1:


# 2:

1/17
Here's what you'll learn reading this thread:

1. How a regular left join works.

2. The sort-merge-join algorithm (the default way to join big data with Spark and sparklyr).

3. Broadcast joins.

4. Salted joins.

All directly in R. Let's go.

2/17
Read 18 tweets
Jun 15
Ever wondered how to manipulate big data with R?

A thread on using Spark in RπŸ‘‡πŸ§΅

#rstats #spark #datascience
Big data is any data which is too large to be loaded into memory all in one go. Ever tried to read a large dataset into R and everything fell over or slowed waaaaaay down? This is where Spark comes in.

1/18
Spark is an open source tool for processing big data. It splits data into partitions for processing to overcome RAM limitations and writes to disk when needed. It is complicated but Spark handles most of the difficult parts. And you can work with Spark directly from R.

2/18
Read 19 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us on Twitter!

:(