matplotlib横坐标间隔2
时间: 2023-09-24 22:05:45 浏览: 104
Python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围
3星 · 编辑精心推荐
您可以使用matplotlib库中的xticks()函数来设置横坐标的间隔。具体操作方式如下:
```python
import matplotlib.pyplot as plt
# 设置横坐标和纵坐标的数据
x = [1, 2, 3, 4, 5]
y = [10, 20, 15, 25, 30]
# 绘制折线图
plt.plot(x, y)
# 设置横坐标的间隔为2
plt.xticks(range(min(x), max(x)+1, 2))
# 显示图像
plt.show()
```
在上述代码中,通过设置xticks()函数中的range()参数来设置横坐标的范围和间隔。其中min(x)表示x中的最小值,max(x)+1表示x中的最大值加上1,2表示横坐标的间隔。这样就可以将横坐标的间隔设置为2。
阅读全文