python 画图坐标轴有中文

import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei'] #用来正常显示中文标签
plt.rcParams['axes.unicode_minus']=False #用来正常显示负号
 

猜你喜欢

转载自blog.csdn.net/u_7890/article/details/82929219