matplotlib.table

Tables drawing.

Note

The table implementation in Matplotlib is lightly maintained. For a more featureful table implementation, you may wish to try blume.

Use the factory function ~matplotlib.table.table to create a ready-made table from texts. If you need more control, use the .Table class and its methods.

The table consists of a grid of cells, which are indexed by (row, column). The cell (0, 0) is positioned at the top left.

Thanks to John Gill for providing the class and table.