surprisingly I didn't find a straight-forward description on how to draw a circle with matplotlib.pyplot (please no pylab) taking as input center (x,y) and radius r. I tried some variants of this:

import matplotlib.pyplot as plt
circle=plt.Circle((0,0),2)
# here must be something like circle.plot() or not?
plt.show()

... but still didn't get it working.

link|improve this question

I'm sure it's possible to do this, but matplotlib is aimed mainly at plotting (i.e. here are some data, put them on a graph), not drawing, so it might not be entirely straightforward. – Thomas K Feb 9 at 17:41
feedback

2 Answers

up vote 5 down vote accepted

You need to add it to an axes. A Circle is a subclass of an Artist, and an axes has an add_artist method.

Here's an example of doing this:

import matplotlib.pyplot as plt
circle1=plt.Circle((0,0),.2,color='r')
circle2=plt.Circle((.5,.5),.2,color='b')
circle3=plt.Circle((1,1),.2,color='g',clip_on=False)
fig = plt.gcf()
fig.gca().add_artist(circle1)
fig.gca().add_artist(circle2)
fig.gca().add_artist(circle3)
fig.savefig('plotcircles.png')

This results in the following figure:

enter image description here

The first circle is at the origin, but by default clip_on is True, so the circle is clipped when ever it extends beyond the axes. The third (green) circle shows what happens when you don't clip the Artist. It extends beyond the axes (but not beyond the figure, ie the figure size is not automatically adjusted to plot all of your artists).

The units for x, y and radius correspond to data units by default. In this case, I didn't plot anything on my axes (fig.gca() returns the current axes), and since the limits have never been set, they defaults to an x and y range from 0 to 1.

Here's a continuation of the example, showing how units matter:

circle1=plt.Circle((0,0),2,color='r')
# now make a circle with no fill, which is good for hilighting key results
circle2=plt.Circle((5,5),.5,color='b',fill=False)
circle3=plt.Circle((10,10),2,color='g',clip_on=False)
ax = plt.gca()
ax.cla() # clear things for fresh plot
# change default range so that new circles will work
ax.set_xlim((0,10))
ax.set_ylim((0,10))
# some data
ax.plot(range(11),'o',color='black')
# key data point that we are encircling
ax.plot((5),(5),'o',color='y')

fig.gca().add_artist(circle1)
fig.gca().add_artist(circle2)
fig.gca().add_artist(circle3)
fig.savefig('plotcircles2.png')

which results in:

enter image description here

You can see how I set the fill of the 2nd circle to False, which is useful for encircling key results (like my yellow data point).

link|improve this answer
1  
I like this answer because you're "drawing" a circle, rather than plotting. Though plotting would have been my first instinct too. – samb8s Feb 9 at 18:42
feedback
#!/usr/bin/python
import matplotlib.pyplot as plt
import numpy as np

def xy(r,phi):
  return r*np.cos(phi), r*np.sin(phi)

fig = plt.figure()
ax = fig.add_subplot(111,aspect='equal')  

phis=np.arange(0,6.28,0.01)
r =1.
ax.plot( *xy(r,phis), c='r',ls='-' )
plt.show()

Or, if you prefer, look at the paths, http://matplotlib.sourceforge.net/users/path_tutorial.html

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.