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
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,
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