y坐标轴刻度翻转
时间: 2023-09-27 17:06:09 浏览: 145
您可以使用 matplotlib 库中的 `invert_yaxis()` 方法来翻转 y 坐标轴刻度。具体操作如下:
```python
import matplotlib.pyplot as plt
# 画图代码
...
# 翻转 y 坐标轴刻度
plt.gca().invert_yaxis()
# 显示图形
plt.show()
```
其中 `plt.gca()` 方法获取当前 axes 对象,`invert_yaxis()` 方法用于翻转 y 坐标轴刻度。
阅读全文