matplotlib,seaborn中文乱码问题
在windows下面,matplotlib画图中文会显示乱码,主要原因是matplotlib默认没有指定中文字体。有两种解决方案。在画图的时候指定字体import matplotlib.pyplot as pltfrom matplotlib.font_manager import FontPropertiesfont = FontProperties(fname=r"c:\windows\fonts\simsun.ttc", size=12)plt.plot([1,2,3])plt.title(u"测试",fontproperties=font)
测试中文字符.png这种方法比较麻烦,每次画图的时候,都要指定字体位置。下面介绍一种一劳永逸的方法。修改配置文件将C:\Windows\Fonts 下面的字体 simsun.ttf,微软雅黑字体 拷贝到D:\Programs\Anaconda\Lib\site-packages\matplotlib\mpl-data\fonts\ttf 文件夹下。(Anaconda文件夹和安装位置有关)用记事本打开D:\Programs\Anaconda\Lib\site-packages\matplotlib\mpl-data\matplotlibrc找到如下两行:#font.family : sans-serif#font.sans-serif : Bitstream Vera Sans, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif去掉这两行前面的#,并且在font.sans-serif的冒号后面加上SimHei,结果如下所示font.family : sans-seriffont.sans-serif : SimHei,Bitstream Vera Sans, Lucida Grande, Verdana, Geneva, Lucid, Arial, Helvetica, Avant Garde, sans-serif重新启动python,matplotlib就可以输出中文字符了。seaborn字体问题上面的方法对于matplotlib是可以用的,但是如果引入了seaborn,就又会出现乱码,现在研究出来的方法是,在程序中加入以下代码import seaborn as snssns.set_style('whitegrid',{'font.sans-serif':['simhei','Arial']})mac os x系统的乱码问题import matplotlib.pyplot as pltimport seaborn as sns plt.rcParams['font.family'] = ['Arial Unicode MS'] #用来正常显示中文标签plt.rcParams['axes.unicode_minus'] = False #用来正常显示负号 sns.set_style('whitegrid',{'font.sans-serif':['Arial Unicode MS','Arial']})