Re: [Matplotlib-users] Polar graph radial labels

2012-01-21 Thread Luke Jennings
Hello Paul, Sorry for the late reply I have been away for a couple of days. Thanks for filing the issue, I would very much appreciate it if you manage to track it down. Luke On Tue, Jan 17, 2012 at 1:47 AM, Paul Hobson wrote: > Luke, > > I don't have an answer to your question, but I can confi

Re: [Matplotlib-users] polar graph

2009-02-27 Thread Jae-Joon Lee
I recommend you to use the Wedge class in matplotlib.patches. from matplotlib.patches import Wedge # draw a wedge in the axes coordinate. (0.5, 0.5) in axes coordinate corresponds to (0,0) in polar coordinate. trans = ax.transAxes center, R = (0.5, 0.5), 0.5 twopi=360. pie1 = Wedge(center, R, 0,

Re: [Matplotlib-users] polar graph

2009-02-26 Thread bubye
I made a little more progress, but i'm not sure i'm doing this the right way. Suggestions? from pylab import * import numpy as np #generate random temperature data snp=[] for i in range(0,65): snp.append(np.random.randint(35,122)) #hide the labels. I don't want them. rc('xtick', labelsize=0