26

I'm not having any success in getting the matplotlib table commands to work. Here's an example of what I'd like to do:

Can anyone help with the table construction code?

import pylab as plt

plt.figure()
ax=plt.gca()
y=[1,2,3,4,5,4,3,2,1,1,1,1,1,1,1,1]
plt.plot([10,10,14,14,10],[2,4,4,2,2],'r')
col_labels=['col1','col2','col3']
row_labels=['row1','row2','row3']
table_vals=[11,12,13,21,22,23,31,32,33]
# the rectangle is where I want to place the table
plt.text(11,4.1,'Table Title',size=8)
plt.plot(y)
plt.show()
Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
user1032355
  • 335
  • 1
  • 8
  • 13
  • 3
    Have you tried looking over [this](http://matplotlib.sourceforge.net/mpl_examples/pylab_examples/table_demo.py) example? Or you might even be able to do something [similar](http://matplotlib.sourceforge.net/examples/pylab_examples/annotation_demo3.html), but instead of the annotations, you have a table. – cosmosis Dec 15 '11 at 20:36
  • Yes I saw that example. When I tried to use the code I couldn't assign the row colors and placement. I also couldn't find any doc help on the syntax or type for the call. As for annotations, I believe there is more control specifying a second axes to plot the table in. – user1032355 Dec 16 '11 at 07:01

2 Answers2

51

AFAIK, you can't arbitrarily place a table on the matplotlib plot using only native matplotlib features. What you can do is take advantage of the possibility of latex text rendering. However, in order to do this you should have working latex environment in your system. If you have one, you should be able to produce graphs such as below:

import pylab as plt
import matplotlib as mpl

mpl.rc('text', usetex=True)
plt.figure()
ax=plt.gca()
y=[1,2,3,4,5,4,3,2,1,1,1,1,1,1,1,1]
#plt.plot([10,10,14,14,10],[2,4,4,2,2],'r')
col_labels=['col1','col2','col3']
row_labels=['row1','row2','row3']
table_vals=[11,12,13,21,22,23,31,32,33]
table = r'''\begin{tabular}{ c | c | c | c } & col1 & col2 & col3 \\\hline row1 & 11 & 12 & 13 \\\hline row2 & 21 & 22 & 23 \\\hline  row3 & 31 & 32 & 33 \end{tabular}'''
plt.text(9,3.4,table,size=12)
plt.plot(y)
plt.show()

The result is:

enter image description here

Please take in mind that this is quick'n'dirty example; you should be able to place the table correctly by playing with text coordinates. Please also refer to the docs if you need to change fonts etc.

UPDATE: more on pyplot.table

According to the documentation, plt.table adds a table to current axes. From sources it's obvious, that table location on the graph is determined in relation to axes. Y coordinate can be controlled with keywords top (above graph), upper (in the upper half), center (in the center), lower (in the lower half) and bottom (below graph). X coordinate is controlled with keywords left and right. Any combination of the two works, e.g. any of top left, center right and bottom is OK to use.

So the closest graph to what you want could be made with:

import matplotlib.pylab as plt

plt.figure()
ax=plt.gca()
y=[1,2,3,4,5,4,3,2,1,1,1,1,1,1,1,1]
#plt.plot([10,10,14,14,10],[2,4,4,2,2],'r')
col_labels=['col1','col2','col3']
row_labels=['row1','row2','row3']
table_vals=[[11,12,13],[21,22,23],[31,32,33]]
# the rectangle is where I want to place the table
the_table = plt.table(cellText=table_vals,
                  colWidths = [0.1]*3,
                  rowLabels=row_labels,
                  colLabels=col_labels,
                  loc='center right')
plt.text(12,3.4,'Table Title',size=8)

plt.plot(y)
plt.show()

And this gives you

enter image description here

Hope this helps!

Andrey Sobolev
  • 12,353
  • 3
  • 48
  • 52
  • Thanks Andrey, This does provide a workable solution to the probelem. However I can't find any discussion/documentation of the pyplot.table or the matplotlib.Table.table capabilities in matplotlib. I'd like to see someone explicitly address the Table question. – user1032355 Dec 16 '11 at 23:22
  • If you want to see more on pyplot.table, please check the update. – Andrey Sobolev Dec 17 '11 at 09:59
  • Thank you Andrey! Not only did you answer the question clearly and completely but I completely missed the matplotlib.pyplot.table documentation. Thanks for the explicit answer and guidance. – user1032355 Dec 17 '11 at 23:36
  • Hi Andrey, I'd like to know if it is possible to drag the table out of the axes? – Evans Y. Mar 01 '13 at 07:23
  • Hi @EvansY., if I remember it right, `loc` keyword `top` places the table above the axes, and `bottom` places it below the axes. Just play with the keywords and see what you get. – Andrey Sobolev Mar 01 '13 at 09:33
  • 1
    Thanks! All of the loc's available values cannot satisfy me, but I find a workaround: add a sub_plot and draw the table to that plot, then set the sub plot to invisible. since I can relocate the sub plot, that means I can locate the table anywhere. – Evans Y. Mar 01 '13 at 10:39
10

I'm not sure if the previous answers satisfies your question, I was also looking for a way of adding a table to the plot and found the possibility to overcome the "loc" limitation. You can use bounding box to control the exact position of the table (this only contains the table creation but should be enough):

        tbl = ax1.table(
            cellText=[["a"], ["b"]],
            colWidths=[0.25, 0.25],
            rowLabels=[u"DATA", u"WERSJA"],
            loc="bottom", bbox=[0.25, -0.5, 0.5, 0.3])

        self.ui.main_plot.figure.subplots_adjust(bottom=0.4)

And the result is (I don't have the reputation to post images so here is a link): http://www.viresco.pl/media/test.png.

Note that the bbox units are normalized (not in plot scale).

lutecki
  • 339
  • 4
  • 5