matplotlib是Python著名的绘图库,默认并不支持中文显示,因此在不经过修改的情况下,无法正确显示中文。
本文将介绍解决这一问题的方法。
不修改文件,加两行代码即可:
matplotlib.rcParams[‘font.sans-serif‘] = [‘simhei‘] # 配置字体 matplotlib.rcParams[‘font.family‘] = ‘sans-serif‘
改前:
改后:
原文地址:https://www.cnblogs.com/liangmingshen/p/11297645.html
时间: 2024-10-13 21:06:30