美文网首页
如何解决matplotlib和seaborn画图默认中文不能显示

如何解决matplotlib和seaborn画图默认中文不能显示

作者: 小电饭锅 | 来源:发表于2018-06-11 17:06 被阅读0次

解决方案

一句话概括:指定字体库

代码如下所示

from matplotlib.font_manager import FontProperties
import seaborn as sns
import matplotlib.pyplot as plt

#指定字体 windows的字体库在下面所示路径,里面有很多字体库

#也可以在网上下载ttf字体文件,自己指定路径
myfont=FontProperties(fname=r'C:\Windows\Fonts\SIMYOU.ttf',size=8)
sns.set(font=myfont.get_name())
plt.plot(range(10))
plt.title('测试中文显示')

如图所示,就可以显示中文了


a.png

相关文章

网友评论

      本文标题:如何解决matplotlib和seaborn画图默认中文不能显示

      本文链接:https://www.haomeiwen.com/subject/ywuheftx.html