python plt画图坐标间隔为1
时间: 2023-11-18 21:22:21 浏览: 82
图片坐标设置_python画图坐标设置代码_
5星 · 资源好评率100%
要设置 matplotlib 中的坐标间隔为1,可以使用以下代码:
```python
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5, 6]
y = [4, 2, 7, 5, 2, 1]
# 创建画布和子图
fig, ax = plt.subplots()
# 设置坐标轴间隔
ax.set_xticks(range(1, 7))
ax.set_yticks(range(1, 8))
# 绘制图形
ax.plot(x, y)
# 显示图形
plt.show()
```
其中,`set_xticks` 和 `set_yticks` 方法可以设置坐标轴上的刻度点,传入的参数为一个列表,表示刻度点的位置。在本例中,使用 `range` 函数生成了坐标轴上的刻度点,使得坐标轴的间隔为1。
阅读全文