欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

用matplotlib绘制图像时显示中文

程序员文章站 2022-05-25 16:19:33
...

只需要添加plt.rcParams[‘font.family’] = [‘Arial Unicode MS’] ,就可以正常显示中文

import matplotlib.pyplot as plt
import numpy as np


plt.rcParams['font.family'] = ['Arial Unicode MS'] #用来正常显示中文标签
x = np.arange(1, 11)
y = 2 * x + 5
plt.title("菜鸟")

plt.xlabel("x 轴")
plt.ylabel("y 轴")
plt.plot(x, y)
plt.show()
相关标签: python类问题