python 折线图 宋体字体
时间: 2023-11-03 10:05:26 浏览: 167
可直接运行 基于Python matplotlib折线图绘制 向图表添加图解和注释 运行后直接出图 含PDF图像文件.rar
5星 · 资源好评率100%
好的,关于 Python 折线图和宋体字体,你可以使用 Matplotlib 库来绘制折线图,并且可以通过设置字体参数来使用宋体字体。具体实现方法如下:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
# 设置字体
font = FontProperties(fname=r"C:\Windows\Fonts\simsun.ttc", size=14)
# 构造数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制折线图
plt.plot(x, y)
# 设置标题和坐标轴标签
plt.title("折线图", fontproperties=font)
plt.xlabel("X轴", fontproperties=font)
plt.ylabel("Y轴", fontproperties=font)
# 显示图像
plt.show()
```
其中,`FontProperties` 类用于设置字体,`fname` 参数指定字体文件路径,`size` 参数指定字体大小。在绘制标题和坐标轴标签时,需要使用 `fontproperties` 参数指定字体。
阅读全文