Beautiful Tables in Matplotlib
plottable is a Python library for plotting beautiful, presentation ready tables in Matplotlib.
Quick start
Installation
pip install plottable
from plottable import Table
d = pd.DataFrame(np.random.random((10, 5)), columns=["A", "B", "C", "D", "E"]).round(2)
fig, ax = plt.subplots(figsize=(5, 8))
tab = Table(d)
plt.show()
By supplying keywords to the Table
Providing a ColumnDefinition for each column you want to style
Accessing a tables rows or columns
Contributing
Contributors are very welcome to this project.
Please take a look at the Contributor Guide
Credits
plottable is built for the lack of good table packages in the python ecosystem.
It draws inspiration from R packages gt and reactable, from blog posts about creating tables in matplotlib Tim Bayer: How to create custom tables and Son of a corner: Beautiful Tables in Matplotlib, a Tutorial and from matplotlibs own table module.
Documentation:
Styling a Table