Matplotlib中的非ASCII字符

时间:2012-06-09 11:07:25

标签: python unicode matplotlib ascii

我在Matplotlib中显示非ASCII字符时遇到问题,这些字符呈现为小方框而不是正确的字体,它看起来像(我用红色涂料填充这些方框以高亮显示它们):

Here is the image showing the problem

我该如何解决?

相关问题是 Accented characters in Matplotlib

2 个答案:

答案 0 :(得分:75)

这个问题实际上可能有几个不同的原因:

默认字体不包含这些字形

您可以使用以下内容更改默认字体(在任何绘图完成之前!)

matplotlib.rc('font', family='Arial')

在matplotlib的某些版本中,您必须设置系列:

matplotlib.rc('font', **{'sans-serif' : 'Arial',
                         'family' : 'sans-serif'})

(请注意,因为sans-serif**{}语法中包含连字符,所以实际上是必要的。)

第一个命令将sans-serif字体系列更改为仅包含一种字体(在我的情况下为Arial),第二个命令将默认字体系列设置为sans-serif

其他选项包括in the documentation

您未正确创建/传递字符串对象到Matplotlib

即使字体包含正确的字形,如果您忘记使用u创建Unicode常量,Matplotlib也会出现这种情况:

plt.xlabel("Średnia odległość między stacjami wsparcia a modelowaną [km]")

所以你需要添加u

plt.xlabel(u"Średnia odległość między stacjami wsparcia a modelowaną [km]")

另一个原因是你忘记在文件顶部放置UTF-8魔法评论(我读到这个might be the source of the problem):

# -*- coding: utf-8 -*-

答案 1 :(得分:5)

test_set <- rbind(training_set[1, ] , test_set) test_set <- test_set[-1,] 的答案已经足够好了。如果您想避免添加jb.,请使用此

u