On Sep 26, 3:33 pm, afrogazer <[EMAIL PROTECTED]> wrote: > In my rush I seem to have overlooked that, maybe because it's Friday > afternoon. Converting the degrees to radians fixed it: > > rad_angles = [elem*(pi/180) for elem in angles] > > Thanks,
One other caveat, some of the bars may over-lap. To prevent this, the width can be set by converting it to radians too: w = 45*pi/180 bar(angles, data, alpha=0.75, align='center', width=w, linewidth=0) Now onto plotting clockwise with North(0 deg.) on top.... -- http://mail.python.org/mailman/listinfo/python-list