Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a series of 20 plots (not subplots) to be made in a single figure. I want the legend to be outside of the box. At the same time, I do not want to change the axes, as the size of the figure gets reduced. Kindly help me for the following queries:

  1. I want to keep the legend box outside the plot area. (I want the legend to be outside at the right side of the plot area).
  2. Is there anyway that I reduce the font size of the text inside the legend box, so that the size of the legend box will be small.

Thanking you, Gopi

share|improve this question

5 Answers

up vote 18 down vote accepted

Create font properties

   from matplotlib.font_manager import FontProperties

   fontP = FontProperties()
   fontP.set_size('small')
   legend([plot1], "title", prop = fontP)
share|improve this answer
Thanks Navi.. But I am getting an error 'FontProperties' is not defined. Can you please help me... – pottigopi Jan 15 '11 at 16:33
You need to add this import: from matplotlib.font_manager import FontProperties – Navi Jan 15 '11 at 16:38
I imported the font manager by saying import matplotlib.font_manager as FontProperties. I am getting an error message called "fontP = FontProperties() module is not callable". Can you pls help here. – pottigopi Jan 15 '11 at 16:43
Thanks Navi.. This works. – pottigopi Jan 15 '11 at 17:00
1  
use from matplotlib.font_manager import FontProperties NOT import matplotlib.font_manager as FontProperties. What you're doing is aliasing ("renaming") matplotlib.font_manager to FontProperties so calling fontP = FontProperties() is actually calling matplotlib.font_manager which is not callable. – ianalis Jan 15 '11 at 17:01

There are a number of ways to do what you want. To add to what @inalis and @Navi already said, you can use the bbox_to_anchor keyword argument to place the legend partially outside the axes and/or decrease the font size.

Before you consider decreasing the font size (which can make things awfully hard to read), try playing around with placing the legend in different places:

So, let's start with a generic example:

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(10)

fig = plt.figure()
ax = plt.subplot(111)

for i in xrange(5):
    ax.plot(x, i * x, label='$y = %ix$' % i)

ax.legend()

plt.show()

alt text

If we do the same thing, but use the bbox_to_anchor keyword argument we can shift the legend slightly outside the axes boundaries:

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(10)

fig = plt.figure()
ax = plt.subplot(111)

for i in xrange(5):
    ax.plot(x, i * x, label='$y = %ix$' % i)

ax.legend(bbox_to_anchor=(1.1, 1.05))

plt.show()

alt text

Similarly, you can make the legend more horizontal and/or put it at the top of the figure (I'm also turning on rounded corners and a simple drop shadow):

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(10)

fig = plt.figure()
ax = plt.subplot(111)

for i in xrange(5):
    line, = ax.plot(x, i * x, label='$y = %ix$'%i)

ax.legend(loc='upper center', bbox_to_anchor=(0.5, 1.05),
          ncol=3, fancybox=True, shadow=True)
plt.show()

alt text

Alternatively, you can shrink the current plot's width, and put the legend entirely outside the axis of the figure:

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(10)

fig = plt.figure()
ax = plt.subplot(111)

for i in xrange(5):
    ax.plot(x, i * x, label='$y = %ix$'%i)

# Shink current axis by 20%
box = ax.get_position()
ax.set_position([box.x0, box.y0, box.width * 0.8, box.height])

# Put a legend to the right of the current axis
ax.legend(loc='center left', bbox_to_anchor=(1, 0.5))

plt.show()

alt text

And in a similar manner, you can shrink the plot vertically, and put the a horizontal legend at the bottom:

import matplotlib.pyplot as plt
import numpy as np

x = np.arange(10)

fig = plt.figure()
ax = plt.subplot(111)

for i in xrange(5):
    line, = ax.plot(x, i * x, label='$y = %ix$'%i)

# Shink current axis's height by 10% on the bottom
box = ax.get_position()
ax.set_position([box.x0, box.y0 + box.height * 0.1,
                 box.width, box.height * 0.9])

# Put a legend below current axis
ax.legend(loc='upper center', bbox_to_anchor=(0.5, -0.05),
          fancybox=True, shadow=True, ncol=5)

plt.show()

alt text

Have a look at the matplotlib legend guide. You might also take a look at plt.figlegend(). Hope that helps a bit, anyway!

share|improve this answer
This is excellent, thank-you! – bradley.ayers May 30 '11 at 6:58
Argh, I don't think its safe for me to upvote yet another answer of yours, but this is very helpful @Joe – Ivo Flipse Jun 23 '11 at 11:34
1  
fantastic guide! the part about shrinking the plot was what i needed. not sure why this isn't the selected answer. – Mike Lyons Jan 25 '12 at 16:40
3  
This should be made into an example or added to the gallery on the matplotlib site. – Jeremy Jun 11 '12 at 21:20
1  
If anyone is having issues with this, note that tight_layout() will cause issues! – Matthew G. Feb 19 at 23:50
show 2 more comments

To place the legend outside the plot area, use loc and bbox_to_anchor keywords of legend(). For example, the following code will place the legend to the right of the plot area:

legend(loc="upper left", bbox_to_anchor=(1,1))

For more info, see http://matplotlib.sourceforge.net/users/legend_guide.html#plotting-guide-legend

share|improve this answer

You can also try figlegend. It is possible to create a legend independent of any Axes object. However, you may need to create some "dummy" Paths to make sure the formatting for the objects gets passed on correctly.

share|improve this answer

If you rather prefer to place the legend interactively/manually rather than programmatically, you can toggle the draggable mode of the legend so that you can drag it to wherever you want. Check the example below:

import matplotlib.pylab as plt
import numpy as np
#define the figure and get an axes instance
fig = plt.figure()
ax = fig.add_subplot(111)
#plot the data
x = np.arange(-5, 6)
ax.plot(x, x*x, label='y = x^2')
ax.plot(x, x*x*x, label='y = x^3')
ax.legend().draggable()
plt.show()
share|improve this answer
Very nice trick – chip Mar 20 at 20:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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