Rotate theta=0 on matplotlib polar plot
Simply use:
ax.set_theta_zero_location("W")
More info in the documentation of matplotlib.
A more flexible way:
ax.set_theta_offset(pi)
You can rotate the axis arbitrarily, just replace pi
with the angle you want.