时间:2020-12-24 11:59:31 | 栏目:Python代码 | 点击:次
其实就是通过 FontProperties来设置的,请参考以下代码:
import matplotlib.pyplot as plt from matplotlib.font_manager import FontProperties font = FontProperties(fname=r"c:\windows\fonts\msyh.ttc", size=15) plt.title("散点图练习", fontproperties=font) plt.scatter([1, 2, 3, 4, 5, 6], [2, 3, 4, 6, 9, 12]) plt.xlabel('横坐标', fontproperties=font) plt.ylabel('纵坐标', fontproperties=font) plt.show()
结果如下: