SyntaxFix
Write A Post
Hire A Developer
Questions
For right labels use ax.yaxis.set_label_position("right"), i.e.:
ax.yaxis.set_label_position("right")
f = plt.figure() ax = f.add_subplot(111) ax.yaxis.tick_right() ax.yaxis.set_label_position("right") plt.plot([2,3,4,5]) ax.set_xlabel("$x$ /mm") ax.set_ylabel("$y$ /mm") plt.show()