Re: [Matplotlib-users] Radial Plot Weirdness

2008-04-01 Thread Michael Droettboom
Nick Susch wrote: > Hi, > > I am new to this list, so forgive me if this has been asked before. I > am trying to do a radial plot and the following code does not seem to > work: > > # --< START CODE >--- > import pylab > import matplotlib > > fig = pylab.figure(figsize=(8,8)) > ax = fig.a

[Matplotlib-users] Radial Plot Weirdness

2008-03-31 Thread Nick Susch
Hi, I am new to this list, so forgive me if this has been asked before. I am trying to do a radial plot and the following code does not seem to work: # --< START CODE >--- import pylab import matplotlib fig = pylab.figure(figsize=(8,8)) ax = fig.add_axes([0.1, 0.1, 0.8, 0.8], polar=True)