📜  改变轴的侧面 plt python 代码示例

📅  最后修改于: 2022-03-11 14:46:40.659000             🧑  作者: Mango

代码示例1
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()