python 折线图 中文字体
时间: 2023-11-03 11:07:02 浏览: 113
利用python画出折线图
在 Python 折线图中使用中文字体,可以通过设置 matplotlib 的字体来实现。具体步骤如下:
1. 安装中文字体:可以从网上下载中文字体,比如微软雅黑、宋体等,然后将字体文件放到系统字体目录下。
2. 导入 matplotlib 库,并设置字体:
```python
import matplotlib.pyplot as plt
plt.rcParams['font.family'] = 'SimHei' # 设置中文字体为黑体
```
3. 绘制折线图:
```python
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
plt.plot(x, y)
plt.show()
```
这样就可以在折线图中使用中文字体了。
阅读全文