Albert Rapp Profile picture
May 5, 2023 16 tweets 6 min read Read on X
I used to think tables are boring.

But they can be beautiful & engaging.

Here's a nice example from @infobeautiful.

It uses many eye-catching elements but you don't need them to create a great table.

Just stick to these guidelines 🧵#dataviz A huge table describing wha...
Let's start with a not so great table and improve it.

Here's a table I would have created just a few months ago.

Not so sexy, right? Let's clean that up. Image
1. Avoid vertical lines

The above table uses waaaay to many grid lines.

Without vertical lines, the table will look less cramped.

Have a look for yourself. Image
2. Texts go left & Numbers go right

Notice that I have switched from all-center-aligned to

1️⃣ right-align numbers
1️⃣ left-align texts.

This improves readability and makes the table more harmonious.

Here's an example: Which column is easier to read? Image
3. Use better column names

Currently, the column names take up too much space.

We can avoid that by combining columns.

This also avoids repeating partial names in multiple columns. Image
4. Use groups instead of repetitive columns

The island column is somewhat repetitive.

In cases like these, I'd rather remove the column.

Instead, I would group the table using additional rows. Image
5. Remove missing numbers

Notice that our table has a lot of zeroes in it.

For better readability, let us replace the zeroes with something more lightweight. Image
6. Add summary lines

Our table already looks much cleaner.

In this format, we could even add MORE information at little cost.

For example, we could add a summary (like counts or means) for each group. Image
Short recap:

1. Avoid vertical lines
2. Align columns
3. Better column names
4. Groups instead of repetitive columns
5. Remove missing numbers
6. Add summaries

These tips are dead-simple and use no fancy visuals.

But visuals are great so let me give you a few bonus guidelines.
Visuals can spice up most tables.

Here's another table that we're going to enhance. Image
7. Transform columns into heatmaps

This table shows that Sierra Leone had the lowest life expectancy in 2007 (among the depicted countries).

We can figure this out by comparing the numbers in the most recent column one-by-one.

Let's make that more obvious with a visual cue. Image
7b. Use multiple heatmap columns

We could also do the same with the 1957 column.

You could even do that with all columns. But I am not sure whether that's a good idea here.

After all, we do not want to overload our table with colors. Image
8. Add sparklines

Did you notice that each depicted country increased its life expectancy in each year.

Sure, you may have an idea that this is the case.

But to be sure, you will have to compare each cell of each row.

Let's make that easier with so-called sparklines. Image
9. Add bullet charts

The data set that was used to create this table contains many more countries.

But showing all of that information would make the table HUUUGE.

Nevertheless, we can use all the data to put the depicted data into context, e.g. with a so-called bullet-chart. Image
10. Add intervals/ranges

You can put means or medians into context using confidence intervals or quantile ranges.

Here's an example of that.

Beware though that I have erroneously labeled the intervals as confidence intervals instead of quantile ranges.

That's a wrap. 🥳

Now you're equipped with guidelines to polish your next table.

Let me know if you've enjoyed this thread by liking the start of this thread below. ☺️

And for more content like this, you can follow @rappa753.

See you next time! 👋

• • •

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

Keep Current with Albert Rapp

Albert Rapp 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 @rappa753

Sep 9, 2023
Three steps to use color in your title instead of wasting space on a huge legend. Image
1 // Wrap your subtitle into <span> tags

These span-tags are HTML notation for inline text. So in principle, adding them should change nothing.

But as you can see, it does have an impact.
Image
Image
2 // Enable HTML notation

The problem is that ggplot does not know that you want to use HTML notation.

So, enable that with element_markdown() from the {ggtext} package in theme.

This will render the span-tags instead of displaying them as text:
Image
Image
Read 7 tweets
Aug 26, 2023
Paired bar charts suck at comparing values. The only reason they're used all the time is because they are easy to create.

But there are better alternatives that are just as easy.

Here's how to create 4 better alternatives with #rstats. Image
0 // Where's the code?

The code for all plots can be found at

This thread walks you through the code quickly.albert-rapp.de/posts/ggplot2-…
1 // Dot plot

Instead of using bars next to each other, why not points on the same line?

Makes comparison suuper easy.

And it takes only a geom_point() layer. Dead-simple, right?

I think it's even easier to create than a paired bar chart.
Image
Image
Read 15 tweets
Aug 19, 2023
R makes it dead-simple to use some of the most effective dataviz principles.

Here are six principles that are so easy that any ggplot beginner’s course should teach them.
1 // Make sure your labels are legible

Too many plots use waaaay too small texts.
With ggplot, it just takes one line to fix this.

Img 1: Way too small fonts & unclear labels
Img 2: Fixed with labs() and theme_gray(base_size = 20)
Img 3: Full code

Image
Image
Image
2 // Use a minimal theme

As a rule of thumb, you should minimize everything that could potentially distract your audience.

That’s why I usually recommend to use a minimal theme: Just use `theme_minimal()` instead of `theme_gray()`. Image
Read 9 tweets
Jun 17, 2023
Need to extract days, months, years or more from time data?

Don't compute them all manually with {lubridate}. That's way too tedious.

The {timetk} package has a nice function that does all the heavy lifting for you.

LEFT: {lubridate} workflow
RIGHT: {timetk} workflow
#rstats ImageImage
BONUS: Maybe you don't want use all of the stuff that {timetk} computes for you.

Here's a simple function that extracts only the parts you want.

All of the code can be found on GitHub at gist.github.com/AlbertRapp/2c9… Image
Also, shoutout to @EatsleepfitJeff for teaching me about this function from {timetk} ☺️
Read 4 tweets
Jun 10, 2023
Everybody loves colors but only few know how to use them well.

With the right guidelines, using colors becomes super easy.

Let me show you how to implement these guidelines with ggplot 🧵
#rstats
Anyone can create a stacked bar chart with ggplot.

But that can end up in a colorful & messy plot.

Let's implement a couple of guidelines from this datawrapper blog post to level up our color game blog.datawrapper.de/10-ways-to-use… Image
The key is to reduce the amount of colors and leverage the `alpha` aesthetic as well. Image
Read 11 tweets
Jun 7, 2023
Sometimes people ask me if I can do one-on-one R tutoring.

Sure I can. But then my hourly rate applies. And there are many amazing *free* resources. Want to try them first?

Here are a few that I recommend. #rstats
1 // Yet Again: R + Data Science

Find it at yards.albert-rapp.de

I'll start with one of my own bc I assume that you like my style (otherwise why ask me?)

Beware though: YARDS is a graduate-level course that I taught for math students w/ a bit of programming experience. Image
2 // R for Data Science

To me this book is like the R bible. It introduced me to the so-called tidyverse and taught me much of what I know.

This one starts out slow and is really beginner-friendly

r4ds.had.co.nz
Read 11 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!

:(