python 画折线中文坐标轴
时间: 2023-09-08 21:17:16 浏览: 97
利用python画出折线图
可以使用Matplotlib库来画折线图,并且使用fontproperties参数来设置中文字体,示例代码如下:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
# 设置中文字体
font = FontProperties(fname='SimHei.ttf', size=14)
# 准备数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制折线图
plt.plot(x, y)
# 设置坐标轴标签
plt.xlabel('横轴', fontproperties=font)
plt.ylabel('纵轴', fontproperties=font)
# 显示图形
plt.show()
```
其中,SimHei.ttf是中文字体文件,需要根据实际情况进行替换。
阅读全文