I want to print an axis label: "Temperature (℃)". How do I do it? A snippet is this:

# -*- coding: utf-8 -*-
import matplotlib.pyplot as plt
x = range(10,60,1)
y = range(-100, 0, 2)
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(x,y)
ax.set_xlabel('Temperature (℃)')

For that last line I have tried:

ax.set_xlabel('Temperature (℃)'.encode('utf-8'))

ax.set_xlabel(u'Temperature (u\2103)')

ax.set_xlabel(u'Temperature (℃)')

ax.set_xlabel(u'Temperature (\u2103)')

ax.set_xlabel('Temperature (\u2103)')

I just don't get it. I'm using spyder and running the code from there.

link|improve this question

1  
Does your code work if run from as script outside of spyder? – unutbu Dec 9 '11 at 2:14
Ahh, I did try that out initially, but got the same result as running it from spyder (must have been an incorrect formulation anyway). I should have tried again with a few of the others I listed above. – a different ben Dec 12 '11 at 3:54
feedback

3 Answers

up vote 6 down vote accepted

Use the LaTeX interpreter to make the degree symbol.

ax.set_xlabel('Temperature ($^\circ$C)')

Here's the results:

enter image description here

link|improve this answer
I think this is the best solution for me. It also has the advantage of making my figure labels match my text (I use LaTeX for typesetting). Instead of $^\circ$C, I used \textcelsius. – a different ben Dec 12 '11 at 3:42
feedback
ax.set_xlabel(u'Temperature (℃)')

should work:

enter image description here

In [56]: matplotlib.__version__
Out[56]: '1.0.1'
link|improve this answer
if the OP is using older version of ipython, it might not work - there are some unicode bugs – wim Dec 9 '11 at 2:06
oh, sorry, he is using spyder – wim Dec 9 '11 at 2:09
Seems spyder doesn't support utf-8. I can't even enter utf-8 characters using the "Ctrl+Shift+U" compose key method. spyder's editor just ignores it and enters a 'U'. I was copying the celsius symbol across from gnome's character map application. – a different ben Dec 12 '11 at 3:56
feedback

Instead of DEGREE CELSIUS U+2103 (℃), use the DEGREE SIGN U+00B0 (°) followed by the capital letter. This is much safer for several reasons, including font coverage. It is also the way recommended in the Unicode Standard (15.2 Letterlike symbols; p. 481).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.