python 坐标轴刻度
时间: 2023-08-08 19:10:51 浏览: 104
修改python plot折线图的坐标轴刻度方法
可以使用matplotlib库中的xticks和yticks函数来设置坐标轴刻度间隔和刻度范围。
例如,要设置x轴刻度间隔为1,刻度范围为0到10,可以使用以下代码:
```python
import matplotlib.pyplot as plt
# 生成数据
x = range(11)
y = [i**2 for i in x]
# 绘制图像
plt.plot(x, y)
# 设置x轴刻度间隔和刻度范围
plt.xticks(range(0, 11, 1))
plt.xlim(0, 10)
# 显示图像
plt.show()
```
同样的,要设置y轴刻度间隔为2,刻度范围为0到20,可以使用以下代码:
```python
import matplotlib.pyplot as plt
# 生成数据
x = range(11)
y = [i**2 for i in x]
# 绘制图像
plt.plot(x, y)
# 设置y轴刻度间隔和刻度范围
plt.yticks(range(0, 21, 2))
plt.ylim(0, 20)
# 显示图像
plt.show()
```
阅读全文