Python Matplotlib表-删除/调整单元格边界线和单元格内容之间的空间/填充

时间:2019-07-09 08:58:18

标签: python matplotlib padding pad matplotlib-table

对于matplotlib表函数,我希望删除表行与文本对齐侧的文本之间的填充/空白-即在此表中,数字和行之间的空格分别位于右侧在他们旁边。

我没有使用CSS或HTML。

Example Table

代码不是完全创建表,而是大约创建表(由于网络限制,我无法上传内容)。

import matplotlib.pyplot as plt

plt.table(cellText=[[11,21,31],[12,22,32],[13,23,33], colLabels=['col1','col2','col3'], 
          rowLabels=['row1','row2','row3'], loc='center') 
plt.axis('off')

我遇到过这个documentation of the Matplotlib Table,但我不知道如何在其中应用选项:

PAD = 0.1

AXESPAD = 0.02

0 个答案:

没有答案