Matplotlib 中文乱码解决方案

  • Matplotlib 中文乱码解决方案

Matplotlib 中文乱码解决方案

import matplotlib

#指定默认字体,在~/.matplotlib/fontList.json中发现simhei
matplotlib.rcParams['font.family']='simhei' 

#解决负号'-'显示为方块的问题  
matplotlib.rcParams['axes.unicode_minus']=False

版权声明:转载必须注明本文转自 East196 的博客:http://blog.csdn.net/east196

你可能感兴趣的:(Python,可视化,matplotlib)