如何使用matplotlib.pyplot更改表格的字体大小?
要使用matplotlib更改表格的字体大小,我们可以使用 set_fontsize() 方法。
步骤
- 创建一个figure和subplots, nrows = 1 和 ncols = 1 。
- 使用numpy创建随机数据。
- 创建 columns 值。
- 使轴线 紧密 和 关闭 。
- 初始化一个变量 fontsize 以更改字体大小。
- 使用 set_font_size() 方法设置表格的字体大小。
- 要显示图表,使用 show() 方法。
示例
import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.00, 3.50]
plt.rcParams["figure.autolayout"] = True
fig, axs = plt.subplots(1, 1)
data = np.random.random((10, 3))
columns = ("Column I", "Column II", "Column III")
axs.axis('tight')
axs.axis('off')
the_table = axs.table(cellText=data, colLabels=columns, loc='center')
the_table.auto_set_font_size(False)
the_table.set_fontsize(10)
plt.show()