plottable is a Python library for plotting beautifully customized, presentation ready tables in Matplotlib.
To learn about its functionality, have a look at the documentation.
import matplotlib.pyplot as plt import numpy as np import pandas as pd from plottable import Table d = pd.DataFrame(np.random.random((5, 5)), columns=["A", "B", "C", "D", "E"]).round(2) fig, ax = plt.subplots(figsize=(6, 5)) tab = Table(d) plt.show()
You can find the notebook here
There are three main ways to customize a table: Contributors are very welcome to this project.Please take a look at the Contributor Guide
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.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4