Matplotlib Polar Plot Set_ylabel On The Left Hand Side
I want to write the ylabel on the left hand side in polar plot as that in the non-polar plot. Here is my code: import matplotlib.pyplot axes=matplotlib.pyplot.figure().add_subplot(
Solution 1:
It is controlled by axes.yaxis.labelpad
property in a polar plot. You can set it to positive number to mover the label to the left, say 120
Post a Comment for "Matplotlib Polar Plot Set_ylabel On The Left Hand Side"