Displaying and customizing static tables

This article describes how to use the improved renderTable Shiny function.
Author

Bárbara Borges

Published

March 24, 2016

The renderTable app demonstrates how to use the improved renderTable() Shiny function.

A table with default formatting on the left and an arrow pointing to a customized table format of the same data on the right.

renderTable Screenshot

Like its predecessor, renderTable()should be used to render static tables in a Shiny app or a runtime: shiny document. However, the resulting table is now neater and more in line with Bootstrap table styles (you can see the differences between the two default implementations in the image above). In addition, you can also customize the table to a much greater extent than before.

The most basic use of renderTable() remains the same: renderTable({ yourData }). In addition, you might have passed some arguments to xtable() and print.xtable() through the ... argument. These will still work. But it is worth to note that many of the arguments you may have used (e.g. align, digits, width) are now made explicit as direct arguments to renderTable(). Even if you didn’t use any extra aguments, however, the finished look of your table will be quite a bit different, as the image above shows. By default:

But if you don’t like these, fret not! All of these are customizable. Take a look at the documentation, or better yet, the interactive demo app, to experiment with all of the new renderTable() arguments.