plt.plot y轴翻转
时间: 2023-10-13 16:11:39 浏览: 177
matplotlib 曲线图 和 折线图 plt.plot()实例
5星 · 资源好评率100%
可以使用`plt.gca().invert_yaxis()`来翻转y轴。例如:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [5, 4, 3, 2, 1]
plt.plot(x, y)
plt.gca().invert_yaxis() # 翻转y轴
plt.show()
```
这将会翻转y轴,使得图形上方为y轴的起点,下方为y轴的终点。
阅读全文