Matplotlib行高度表属性

时间:2015-01-15 20:37:18

标签: python python-2.7 matplotlib

我已经尝试了所有可以找到的命令和文档。如何在此处设置行的高度。

from pylab import *

# Create a figure
fig1 = figure(1)
ax1_1 = fig1.add_subplot(111)

# Add a table with some numbers....

tab = [[1.0000, 3.14159], [1, 2], [2, 1]]

# Format table numbers as string
tab_2 = [['%.2f' % j for j in i] for i in tab]

y_table = plt.table(cellText=tab_2,colLabels=['Col A','Col B'], colWidths = [.5]*2, loc='center')
y_table.set_fontsize(34)


show()

3 个答案:

答案 0 :(得分:10)

您可以使用ytable.scale

import matplotlib.pyplot as plt

fig, ax = plt.subplots()
tab = [[1.0000, 3.14159], [1, 2], [2, 1]]
tab2 = [['%.2f' % j for j in i] for i in tab]

ytable = plt.table(cellText=tab2, colLabels=['Col A','Col B'], 
                    colWidths=[.5]*2, loc='center')
ytable.set_fontsize(34)
ytable.scale(1, 4)
plt.show()

产量

enter image description here

答案 1 :(得分:0)

以上答案有效,但是有点作弊,并且没有提供任何灵活性,例如。您不能使第一行高于其他行。您可以使用get_celld()方法和set_height()显式设置一行中每个单元格的高度:

import matplotlib.pyplot as plt

fig, ax = plt.subplots()
tab = [[1.0000, 3.14159], [1, 2], [2, 1]]
tab2 = [['%.2f' % j for j in i] for i in tab]
colLabels=['Col A','Col B']
ytable = ax.table(cellText=tab2, colLabels=colLabels, 
                    colWidths=[.5]*2, loc='center')

cellDict = ytable.get_celld()
for i in range(0,len(colLabels)):
    cellDict[(0,i)].set_height(.3)
    for j in range(1,len(tab)+1):
        cellDict[(j,i)].set_height(.2)

ytable.set_fontsize(25)
ax.axis('off')
ax.axis('off')
plt.show()

enter image description here

答案 2 :(得分:0)

我认为以下内容比@JuneSkeeter 提出的要简单如果您知道要增大哪一行。它避免了必须循环两次。这使得第一行(即行索引 0)0.3

for r in range(0, len(colLabels)):
    cell = ytable[0, r]
    cell.set_height(0.3)