Reverse radial axes of Matplotlib polar plot
Old question, but I finally found an easy answer. Use ax.set_rlim(bottom=90, top=-45)
. Note that you have to set this BEFORE calling ax.plot()
, or it will not transform the plotted points accordingly.