How to Make Beautiful Tables in R (2024)

Updated March 12, 2022 with info on the reactablefmtr and gtextras packages.

Want to learn to make beautiful tables?

Sign up for the course Making Beautiful Tables with R today!

It doesn't matter how good your data analysis is if you don't effectively communicate your results. In most reports, communication of results happens through a combination of data visualization and tables. Along with narrative text, these make up the bulk of content used to communicate results.

Clear writing is a topic for another venue. Data visualization in R is a huge topic (and one covered expertly in Kieran Healy's Data Visualization: A Practical Introduction and Claus Wilke's Fundamentals of Data Visualization). But what about tables? Fortunately for R users, there are many ways to create beautiful tables that effectively communicate your results.

Customizing Default Table Output in RMarkdown

If you are using RMarkdown (and, if you're not, you should really consider it), any data frame that you call in a code chunk is displayed using the data frame printing method set in your YAML. As Yihui Xie puts it, "printing objects in R code chunks basically emulates the R console." This default output leaves much to be desired. "Table" output with fixed-width fonts like this never inspired anyone to take action.

How to Make Beautiful Tables in R (1)

It is quite easy to improve this output. You can change the default data frame print method in the YAML to one of the following options.

How to Make Beautiful Tables in R (2)

Of these, the one most likely to improve your table output is paged, which creates paged tables that work well when you have particularly long tables and want to give users the ability to look at pieces of the output:

How to Make Beautiful Tables in R (3)

My Favorite R Packages to Make Tables

There are also many packages that provide functions to produce nicely formatted tables. Here are some of the packages I have used that produce tables that look good and effectively communicate results.

gt

gt is a new(ish) package. It “is designed to be both straightforward yet powerful … [with] an emphasis is on simple functions for the everyday display table needs.” The package has functions designed to do things like:

How to Make Beautiful Tables in R (4)

The gt package provides a general philosophy of tables (similar to the grammar of graphics theory that underlies the ggplot2 package) that enables it to be easy to use (with some practice) and extremely flexible.

Learn more about gt

gtextras

There’s also a package called gtextras that provides add-ons for the gt package. This package, by Thomas Mock, provides some nice themes like this modeled on New York Times tables.

How to Make Beautiful Tables in R (5)

The package also lets you add visualizations into tables, including sparklines and bar plots.

How to Make Beautiful Tables in R (6)

Learn more about gtextras.

kable + kableExtra

The kableExtra package builds on the kable output from the knitr package. As author Hao Zhu puts it:

The goal ofkableExtrais to help you build common complex tables and manipulate table styles. It imports the pipe%>%symbol frommagrittrand verbalize all the functions, so basically you can add “layers” to a kable output in a way that is similar withggplot2andplotly.

Sharla Gelfand used the kableExtra package in a report she did for the College of Nurses of Ontario and loved it.

How to Make Beautiful Tables in R (7)

Learn more about kableExtra

formattable

Kun Ren's formattable package" is designed for applying formatting on vectors and data frames to make data presentation easier, richer, more flexible and hopefully convey more information."

One of the most unique features is the ability to add colors, background shading, bars, and other features that move tables beyond hulking blocks of text.

How to Make Beautiful Tables in R (8)

If you're looking for an example of the formattable package in use, Laura Ellis has a really nice walkthrough.

Learn more about formattable

DT

The main appeal of the DT package is its ability to add filtering, pagination, and sorting to HTML tables. Users can slice, scroll through, and arrange tables in ways that help them to make sense of your results.

How to Make Beautiful Tables in R (9)

Learn more about DT

reactable

I had not heard of this package until Mara Averick tweeted about it recently. Though I haven't used it, the docs look incredible. Like the DT package, it offers the ability to sort and filter data. It's also much more visually appealing than the DT package. One of the examples (below) looks exactly like the gorgeous tables made by FiveThirtyEight.

How to Make Beautiful Tables in R (10)

Learn more about reactable

reactablefmtr

The reactable package can be a bit more challenging to work with. To simplify the process of creating tables in reactable, Kyle Cuilla developed the reactablefmtr package. As Kyle puts it:

The {reactablefmtr} package simplifies and enhances the styling and formatting of tables built with the {reactable}Rpackage. The {reactablefmtr} package provides many conditional formatters that are highly customizable and easy to use.

Among other things, the reactablefmtr package makes it easier to conditionally add colors to tables, add interactive sparklines, use custom themes, embed images in tables, and save tables in PNG and HTML format.

How to Make Beautiful Tables in R (11)

Learn more about reactablefmtr

flextable

The above packages are designed to produce HTML tables. If you are knitting to Word, your best for tables is the flextable package (though the tables this package produces can also be embedded within HTML and PDF outputs). Designed by David Gohel, the flextable package provides a straightforward syntax to shape the content and format of your tables.

How to Make Beautiful Tables in R (12)

Learn more about flextable

Packages Recommended by Others

The above packages are ones that I've used and had good success with. When I put the call out on Twitter for other packages to make tables in R, I got some promising-looking responses!

huxtable

The huxtable package produces:

LaTeX and HTML tables, with a friendly, modern interface. Features include control over text styling, number format, background color, borders, padding and alignment. Cells can span multiple rows and/or columns. Tables can be manipulated with standard R subsetting or dplyr functions.

How to Make Beautiful Tables in R (13)

Learn more about huxtable

rhandsontable

Like the DT package, the rhandsontable package gives users the ability to manipulate data in tables. It comes with "powerful features like data validation, sorting, grouping, data binding, formula support or column ordering." Working with tables feels like viewing data in Excel, which can be helpful for users used to working with Microsoft's ubiquitous spreadsheet program. Users can even make changes to data in tables made with this package.

How to Make Beautiful Tables in R (14)

Learn more about rhandsontable

pixiedust

The fantastically-named pixedust package is designed to produce a specific type of table: model output that has been tidied using the broom package. Using pixiedust is a three-step process:

  1. Run your model using a base R function (e.g. lm for a linear model)

  2. Use the tidy function from the broom package to convert the results into a tidy format

  3. Use the pixiedust package (the sprinkle_ set of functions in particular) to improve the output, removing “stats-speak” and putting it into a “format that is suitable for publication or submission to a client.”

The sprinkle_ functions enable you to do things like removing excess decimal places, convert p-values to not use scientific notation, and more.

How to Make Beautiful Tables in R (15)

If you want to ensure that end users read and understand the results of your complex statistical analyses, this looks like a great package!

Learn more about pixiedust

There are surely more table packages that I've missed (in wrapping up this post, I came across this list from the RStudio RMarkdown tutorials), but this should give you a good place to start in making your tables more beautiful and more effective.

Sign up for the newsletter

Get blog posts like this delivered straight to your inbox.

How to Make Beautiful Tables in R (2024)

FAQs

How can I make my table prettier? ›

Use colors and lines to help readers navigate your table. Highlight important cells by applying a subtle background color or group related values by creating thicker lines. Include the source of your data to make your table look more professional and allow readers to analyze the topic more deeply.

How do I make a table more readable? ›

Whitespace: Ensure enough space between rows and columns for readability. Shading and Zebra Stripes: Alternate row colors lightly for easier tracking across. Limit Colors: Use color sparingly to highlight important data, not to decorate. Legible Fonts: Choose fonts that are easy to read and of adequate size.

How do you format a table to look nice? ›

Create a custom table style
  1. Select any cell in the table you want to use to create a custom style.
  2. On the Home tab, click Format as Table, or expand the Table Styles gallery from the Table Tools > Design tab (the Table tab on a Mac).
  3. Click New Table Style, which will launch the New Table Style dialog.

How do you make a cute table? ›

Table Decorating Tips
  1. Curate your colour theme. Adopting a few key colours will help make your table look harmonious and balanced. ...
  2. Layer up your linens. A tablecloth doesn't have to just be practical, think of it as your blank canvas — the foundation of your tablescape. ...
  3. Create a centrepiece. ...
  4. Mix old with new.
May 15, 2021

How to create visually appealing tables? ›

When deciding how to style and format your table, prioritize readability and remove any visual clutter that may distract the eye.
  1. Choose The Best Row Style. ...
  2. Use Clear Contrast. ...
  3. Add Visual Cues. ...
  4. Align Columns Properly. ...
  5. Use Tabular Numerals. ...
  6. Choose an Appropriate Line Height. ...
  7. Include Enough Padding. ...
  8. Use Subtext.
Oct 1, 2019

What makes a table more beautiful and attractive? ›

Matching the hues can give your table a huge makeover. You can use neutral shades with earthy tones to give your table warmth. Add fruits in jute baskets to give your table a pop-up look.

How can we enhance the look of a table? ›

Go to Table Tools > Design > Table Styles > Borders, and then click the border option that you want to change.

How do you make a study table look good? ›

Creative Decoration for Study Table Ideas
  1. Use colourful flowers. Flowers are a fantastic way to decorate spaces. ...
  2. Books! Books! ...
  3. Add greens. ...
  4. Wall posters or frames. ...
  5. Organise Stationeries. ...
  6. Create shelves on the wall. ...
  7. Whiteboard and chalkboard. ...
  8. Get sticky notes.
Feb 11, 2024

How do I make my table more accessible? ›

​What Makes a Table Accessible?
  1. Include a Header Row.
  2. Use a Simple Table Structure. Avoid tables nested within other tables. ...
  3. Add Alt Text to the Table. It can be time-consuming to read a table with a screen reader. ...
  4. Avoid Blank Cells if Possible. ...
  5. Don't Use Screenshots of Tables.

How do I create a good dataset in R? ›

Making the Dataset
  1. Step 1: List down all variables you want to include. Note down how many units or rows of data you want. ...
  2. Step 2: Describe the requirements of each variable. ...
  3. Step 3: Determine an appropriate distribution for your variables. ...
  4. Step 4: Writing the Code. ...
  5. Step 5: Gather and Save Your Data.

How to create a demographic table using R? ›

  1. 3.1 Get the data.
  2. 3.2 Plot the data.
  3. 3.3 Aggregating: group_by() , summarise()
  4. 3.4 Add new columns: mutate() 3.4.1 Percentages formatting: percent()
  5. 3.5 summarise() vs mutate()
  6. 3.6 Common arithmetic functions - sum() , mean() , median() , etc.
  7. 3.7 select() columns.
  8. 3.8 Reshaping data - long vs wide format.

How to do a descriptive statistics table in R? ›

R provides a wide range of functions for obtaining summary statistics. One method of obtaining descriptive statistics is to use the sapply( ) function with a specified summary statistic. Possible functions used in sapply include mean, sd, var, min, max, median, range, and quantile.

What is the best package for tables in R? ›

flextable (Gohel and Skintzos 2023) and huxtable (Hugh-Jones 2024): If you are looking for a table package that supports the widest range of output formats, flextable and huxtable are probably the two best choices.

How to format a table in R? ›

Method
  1. Select your table.
  2. Copy the name from General > GENERAL > Name.
  3. Select the Calculation icon. ...
  4. Click onto the page to place the custom calculation.
  5. In the object inspector go to General > R CODE.
  6. Reference the formattable R library and define the table using the name from step 2.
May 31, 2024

How do you make an awesome table? ›

Create your first Awesome Table app
  1. Tutorial: Create your first Awesome Table app.
  2. Step 1: Create and set up your data source.
  3. Step 2: Create and set up a Table app in Awesome Table.
  4. Step 3: Customize how data is displayed in your app.
  5. Step 4: Embed your app on your website.

References

Top Articles
60 Congratulations Messages for White Coat Ceremony
Congratulations Messages & Wishes for White Coat Ceremony - BeverageBoy
Joy Ride 2023 Showtimes Near Movie Tavern Little Rock
9Anime Keeps Buffering
scotty rasmussen paternity court
Texas Roadhouse On Siegen Lane
The Phenomenon of the Breckie Hill Shower Video Understanding Its Impact and Implications - Business Scoop
T800 Kenworth Fuse Box Diagram
Elgin Il Building Department
Dusk Hypixel Skyblock
New & Used Motorcycles for Sale | NL Classifieds
Lecture Tutorials For Introductory Astronomy Answer Guide
Who Is Denise Richards' Husband? All About Aaron Phypers
Rugged Gentleman Barber Shop Martinsburg Wv
Does Publix Pharmacy Accept Sunshine Health
Long-awaited Ringu sequel Sadako doesn’t click with the 21st century
Omni Id Portal Waconia
9xMovies: The Ultimate Destination for Free Movie Downloads
Joy Ride 2023 Showtimes Near Amc Ward Parkway
Longfellow's Works - Evangeline
Haslam Metrics
Ratchet And Clank Tools Of Destruction Rpcs3 Freeze
Xxc Renegade 1000 Xxc Price In India Price
Open jazz : podcast et émission en replay | France Musique
Equity Livestock Monroe Market Report
Guide:How to make WvW Legendary Armor
Mychart Login Wake Forest
Drive Mad Yandex
Claw Machine Random Name Picker
Hyb Urban Dictionary
Meet The Parents Putlocker
Jcpenney Salon Salinas
Candy Land Santa Ana
Dyi Urban Dictionary
Gun Mayhem Watchdocumentaries
Weather Radar Jamestown
Monte Carlo Poker Club Coin Pusher
Oriellys Bad Axe
L898 Pill Blue Capsule
Matt Laubhan Salary
Uw Oshkosh Wrestling
Makes A Successful Catch Maybe Crossword Clue
NCCAC
Smoque Break Rochester Indiana
Winding Road Ahead for China’s EV Growth
Best Drugstore Bronzers
What Time Does The Chase Bank Close On Saturday
Skip The Games Buffalo
Erin Mclaughlin Eyebrow
Black Adam Showtimes Near Grand 18 - Winston-Salem
Temperature At 12 Pm Today
Upgrading Fedora Linux to a New Release
Latest Posts
Article information

Author: Prof. Nancy Dach

Last Updated:

Views: 5710

Rating: 4.7 / 5 (57 voted)

Reviews: 88% of readers found this page helpful

Author information

Name: Prof. Nancy Dach

Birthday: 1993-08-23

Address: 569 Waelchi Ports, South Blainebury, LA 11589

Phone: +9958996486049

Job: Sales Manager

Hobby: Web surfing, Scuba diving, Mountaineering, Writing, Sailing, Dance, Blacksmithing

Introduction: My name is Prof. Nancy Dach, I am a lively, joyous, courageous, lovely, tender, charming, open person who loves writing and wants to share my knowledge and understanding with you.