Matplotlib表落在绘图区域外

时间:2015-01-13 18:50:48

标签: python python-2.7 matplotlib

我在使用Matplotlib的情节中有一张表,并且表格溢出了绘图区域。有没有办法让这种情况发生,也许有偏移或类似的东西?

import matplotlib.pylab as plt

plt.figure()
ax=plt.gca()

col_labels=['col1','col2','col3']
row_labels=['row1','row2','row3']
table_vals=[[11,12,13],[21,22,23],[31,32,33]]
the_table = plt.table(cellText=table_vals,
                  colWidths = [0.1]*3,
                  rowLabels=row_labels,
                  colLabels=col_labels,
                  loc='center left')
plt.text(12,3.4,'Table Title',size=8)


plt.show()

1 个答案:

答案 0 :(得分:6)

添加bbox参数,这样您就可以控制确切的位置,例如:

plt.table(cellText=table_vals,
                  colWidths = [0.1]*3,
                  rowLabels=row_labels,
                  colLabels=col_labels,
                  loc='center left',
                  bbox=[0.25, -0.5, 0.5, 0.3])

以下是table的相应documentationbbox的{{3}}。