Creating Lollipop-Jitter Plots in Tableau
Jul 14, 2020
Klaus SchulteA few days ago, I came across this tweet by We are R-Ladies, who linked an original post by Cédric Scherer from last year. Cédric developed R code to create something that I would call a Lollipop-Jitter plot. This cool chart has it all, the overall picture and the granular details. Really great work!
Also great: the gif he created to demonstrate his thought and developing process starting from a “boring” boxplot.
Is a Lollipop-Jitter plot also doable in Tableau? Of course it is 🙂
Let’s see how to create this chart in Tableau.
I’ve used Tableau’s Superstore data and wanted to take a look at 2019’s profit ratios on sub-category and manufacturer level.
To create the chart in Tableau according to Cédric’s example it needs one extra copy of the data. Therefore I dragged on ‘Orders’ one more time and created a field ‘Copy’ which I will reference in my formulas.
[Copy]
CASE [Table Name]
WHEN "Orders" THEN 1
WHEN "Orders$" THEN 2
END
Another way to do the data densification is the internal data densification method.
Also, I filtered the data down to the 2019 values using a datasource filter.
[Profit Ratio] (comes with Superstore)
SUM([Profit])/SUM([Sales])
[PR subcat] (profit ratio by Sub-Category)
{ FIXED [Sub-Category]:[Profit Ratio]}
[PR total] (yearly profit ratio)
{ FIXED YEAR([Order Date]) :[Profit Ratio]}
[Jitter Axis]
CASE MIN([Copy])
WHEN 1 THEN AVG(random())
WHEN 2 THEN AVG(0.5)
END
For my first copy of the data I display profit ratios by manufacturer on the x-axis. AVG(random()) will create the jitter effect to prevent the overlapping of data points by randomly placing them on a y-axis between values of 0 and 1. The second copy of the data will be used to display sub-category profit ratio. I wanted this dot to be center aligned on my jitter axis and therefore defined a fixed value of 0.5.
[Bubbles]
CASE MIN([Copy])
WHEN 1 THEN [Profit Ratio]
WHEN 2 THEN AVG([PR subcat])
END
For the dot plot, level of detail in my view will be Manufacturer, therefore I can use [Profit Ratio] for my first copy of the data. For the second copy, I will use the [PR subcat]-LOD.
[Bar 1]
IF MIN([Copy])=2 THEN AVG([PR subcat]) END
[Bar 2]
IF MIN([Copy])=2 THEN AVG([PR total]) END
My bar chart will actually be a line chart, connecting each sub-category profit ratio with the total profit ratio. Again, I’m using the (center aligned) second copy of the data.
That’s basically all. There are a few more calculated fields in the workbook for the tooltips, which are not required for the chart itself.
With these calculations we are now able to draw our Lollipop-Jitter plot:
Edit size accordingly and fix jitter axis from -0.2 to 1.2.
Like already said, the bar chart is actually a line chart. To create it,
Edit size of the line chart accordingly.
To add the vertical reference line for the total profit ratio, put [PR total] on Detail, add a reference line, and select [PR total] to be displayed:
Last thing you probably want to do is adding some explanatory tooltips. Therefore, you have to create a few calculated fields to define the tooltip depending of the actual copy of the data.
I hope you all enjoyed reading about and that you will find own use cases for this. Again, all credits to Céderic Scherer for sharing this chart on his blog.
If you have any questions or feedback, please leave a comment below or reach out to me on Twitter @ProfDrKSchulte.
COMMENTS