Matplotlib polar plot radial axis offset
I was wondering, is it possible to offset the start of the radial axis or move it outside of the graph. This is what I'm hoping to achieve: And this is what I have for now. I have read the documentation and different topics on SO, but I couldn't find anything helpful. Does that mean that it is not even possible if it is not mentioned anywhere. Thank you in advance. EDIT (added snippet of a code used to create the plot): ax = fig.add_subplot(111, projection='polar') ax.set_theta_zero_location('N') ax.set_theta_direction(-1) ax.plot(X,lines[li]*yScalingFactor,label=linelabels[li],color=color