gpt4 book ai didi

python - 如何更改 Matplotlib 表格中文本的字体类型?

转载 作者:行者123 更新时间:2023-12-05 06:02:54 25 4
gpt4 key购买 nike

我在下面有一个用 matplotlib 制作的示例表:

import numpy as np
import matplotlib.pyplot as plt

collabel=("col 1", "col 2", "col 3")
new_data = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])

the_table = plt.table(cellText=new_data,colLabels=collabel,loc='center')
plt.axis("off")

plt.show()

我只想更改表格中显示的文本的字体类型(即 Arial、Courier 等)。我在 table() 方法中找不到字体属性,我应该尝试获取表格中的文本项吗?

最佳答案

您可以在绘制表格之前在 plt.rcParams 中设置字体系列:

plt.rcParams['font.family'] = 'Serif'
the_table = plt.table(cellText=new_data, colLabels=collabel, loc='center')

关于python - 如何更改 Matplotlib 表格中文本的字体类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66801705/

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