如何更改表与matplotlib.pyplot字体大小?(How to change the tab

2019-07-22 01:37发布

我画像这样pyplot表:

    sub_axes.table(cellText=table_vals,
          colWidths = [0.15, 0.25],
          rowLabels=row_labels,
          loc='right')

我想改变的表的内容的字号,发现有一个fontsize属性,请参考“表”的定义 。

因此,它变成了:

    sub_axes.table(cellText=table_vals,
          colWidths = [0.15, 0.25],
          rowLabels=row_labels,
          fontsize=12,
          loc='right')

但是,当我执行的代码,我得到了一个错误:

TypeError: table() got an unexpected keyword argument 'fontsize'

这种特性已过时? 我怎样才能改变表的字体大小与pyplot?

Answer 1:

我认为,该文档在参数对是要么提示(注意fontsize不是一个链接像其他参数),或者也许是有点此刻误导。 没有fontsize的参数。

通过挖的源代码 ,我发现了Table.set_fontsize方法:

table = sub_axes.table(cellText=table_vals,
                       colWidths = [0.15, 0.25],
                       rowLabels=row_labels,
                       loc='right')
table.set_fontsize(14)
the_table.scale(1.5, 1.5)  # may help

这是一个严重夸大字体大小只是为了显示效果的例子。

import matplotlib.pyplot as plt
# Based on http://stackoverflow.com/a/8531491/190597 (Andrey Sobolev)

fig = plt.figure()
ax = fig.add_subplot(111)
y = [1, 2, 3, 4, 5, 4, 3, 2, 1, 1, 1, 1, 1, 1, 1, 1]    
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 right')
the_table.auto_set_font_size(False)
the_table.set_fontsize(24)
the_table.scale(2, 2)

plt.plot(y)
plt.show()



Answer 2:

设置auto_set_font_sizeFalse ,然后set_fontsize(24)

the_table.auto_set_font_size(False)
the_table.set_fontsize(24)


文章来源: How to change the table's fontsize with matplotlib.pyplot?