gpt4 book ai didi

python - Matplotlib 行高表属性

转载 作者:太空狗 更新时间:2023-10-29 22:09:18 28 4
gpt4 key购买 nike

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

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()

最佳答案

你可以使用 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

关于python - Matplotlib 行高表属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27972524/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com