plt.plot 坐标轴在右侧
时间: 2023-07-20 15:45:31 浏览: 84
Python matplotlib学习笔记之坐标轴范围
如果你想要将 matplotlib 中的 `plt.plot` 绘图中的坐标轴放在右侧,可以参考下面的代码:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 1, 3, 5]
# 绘制图形
plt.plot(x, y)
# 设置坐标轴在右侧
plt.gca().yaxis.tick_right()
plt.gca().yaxis.set_label_position("right")
# 显示图形
plt.show()
```
在这个例子中,我们通过 `plt.gca().yaxis.tick_right()` 将 y 轴的刻度放在右侧,通过 `plt.gca().yaxis.set_label_position("right")` 将 y 轴的标签放在右侧。如果你想要将 x 轴放在上方,可以将上述代码中的 `y` 替换为 `x` 即可。
阅读全文