plt.rcParams[‘font.sans-serif‘] = [‘SimHei‘] 和plt.rcParams[‘axes.unicode_minus‘] = False

前面已经有import matplotlib.pyplot as plt ,将matplotlib简写为plt。可知plt是代表画图的库。库内的配置(configuration)是固定好的,但有时我们想要修改plt的配置参数来满足画图需求。可用plt.rcParams['配置参数']=[修改值]进行修改,rcParams即run configuration parameters运行配置参数。

plt.rcParams['font.sans-serif'] = ['SimHei'] #运行配置参数中的字体(font)为黑体(SimHei)

plt.rcParams['axes.unicode_minus'] = False #运行配置参数总的轴(axes)正常显示正负号(minus)

有用请点个赞吧~

你可能感兴趣的:(解决问题的方法,python,sklearn,开发语言)