matplotlib 字体粗细怎么设置
时间: 2023-08-07 22:14:55 浏览: 88
matplotlib综述1
你可以使用 `fontweight` 参数来设置 matplotlib 中文本的粗细程度。具体来说,你可以在 `matplotlib.pyplot` 模块中使用 `text` 函数或者 `xlabel` / `ylabel` 函数来创建文本,然后在调用这些函数时传递 `fontweight` 参数来设置粗细程度。例如:
```
import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [4, 5, 6])
plt.xlabel('X轴标签', fontweight='bold')
plt.ylabel('Y轴标签', fontweight='normal')
plt.text(2, 5, '文本', fontweight='bold')
plt.show()
```
在上面的例子中,`xlabel` 和 `text` 函数的 `fontweight` 参数被设置为 `'bold'`,因此它们的文本会以粗体显示;而 `ylabel` 函数的 `fontweight` 参数被设置为 `'normal'`,因此它的文本会以普通粗度显示。
阅读全文