21

Is there a way to get Matplotlib to render accented chars (é,ã,â,etc)?

For instance, I'm trying to use accented characters on set_yticklabels() and Matplotlib renders squares instead, and when I use unicode() it renders the wrong characters.

Is there a way to make this work?

It turns out you can use u"éã", but first you have to set the file encoding:

# Using the magic encoding
# -*- coding: utf-8 -*-

After that Matplotlib correctly renders

u"é"

I also learned that you can use

import matplotlib.font_manager as fm
fp1=fm.FontProperties(fname="/path/to/somefont.ttf")
ax.title("é",fontproperties=fp1)

in case you need to render a characters that Matplotlib does not have.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
OldJim
  • 331
  • 1
  • 2
  • 12
  • Good question. Unicode has a rich repertoire of mathematical symbols, and I would hope that Unicode would work when used. – Craig McQueen Mar 09 '10 at 08:09
  • Is there a way to mimic this behaviour using the interactive mode? (For example, I'm using IPython.) The trick with using font manager didn't work for me. – lubomir.brindza Mar 21 '11 at 20:30
  • Nevermind, this is an issue with [IPython itself](https://github.com/ipython/ipython/issues/labels/unicode#issue/25). – lubomir.brindza Mar 21 '11 at 21:36

4 Answers4

16

Prefix the strings with u to tell Python that they are Unicode strings:

ax.set_yticklabels([u'é', u'ã', u'â'])
ptomato
  • 56,175
  • 13
  • 112
  • 165
  • 1
    Thanks for your input ptomato but it renders the wrong characters when i use u"é" or unicode('é','latin-1'), do these work for you? – OldJim Mar 09 '10 at 14:47
  • Yes, those work for me. As you say in your update, it was your file encoding that was causing the problem. – ptomato Mar 09 '10 at 17:58
  • What happens with those certain characters? I am guessing you did not include `coding: utf8` in a comment at the top of the file. – ptomato Aug 23 '15 at 17:12
  • @DrunkenMaster see the answer for https://stackoverflow.com/questions/10960463/non-ascii-characters-in-matplotlib – abukaj Jan 13 '18 at 19:16
8

Sure. You can use TeX:

from matplotlib import rcParams
rcParams['text.usetex'] = True
ax = ... # Axes object
ax.set_yticklabels(['$\'{e}$', '$\tilde{a}$', '$\hat{a}$'])
Steve Tjoa
  • 59,122
  • 18
  • 90
  • 101
  • Using tex works, but since the text to be rendered is in a database (unicode) i will have to "convert" it every time, or there is a easier solution here? – OldJim Mar 09 '10 at 15:35
  • Oh, okay. Yeah, then this solution might be annoying. Use the other solution. – Steve Tjoa Mar 10 '10 at 03:02
5

I also had this problem specifically when I was trying to use the annotate function. Here was my error message:

ValueError: matplotlib display text must have all code points < 128 or use Unicode strings

And here's what I used to resolve this:

"accented string i.e. sāo paulo".decode('utf-8')
simoes
  • 4,897
  • 4
  • 23
  • 28
1

from matplotlib import rc

rcParams['text.latex.unicode']=True
Ankur
  • 5,086
  • 19
  • 37
  • 62
dk_sasaki
  • 31
  • 4