ax1.set_yticks
时间: 2023-07-07 18:44:37 浏览: 103
tensorflow下的图片标准化函数per_image_standardization用法
ax1.set_yticks() 方法是用来设置 y 轴的刻度位置。可以传入一个列表或数组作为参数,表示设置刻度的位置。例如:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
fig, ax1 = plt.subplots()
ax1.plot(x, y)
ax1.set_yticks([0, 5, 10, 15, 20])
plt.show()
```
这段代码会画出一个包含一条线的图像,y 轴的刻度位置分别是 0、5、10、15、20。
阅读全文