python设置纵坐标范围
时间: 2023-07-22 08:03:20 浏览: 158
Python设置matplotlib.plot的坐标轴刻度间隔以及刻度范围
3星 · 编辑精心推荐
在 Python 中,可以使用 `matplotlib` 库来设置图表的纵坐标范围。下面是一个示例代码:
```python
import matplotlib.pyplot as plt
# 创建一组数据
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 绘制折线图
plt.plot(x, y)
# 设置纵坐标范围
plt.ylim(0, 12) # 设置纵坐标范围为 0 到 12
# 显示图表
plt.show()
```
在上面的代码中,通过 `plt.ylim()` 函数来设置纵坐标的范围,可以传入两个参数,分别表示最小值和最大值。在这个例子中,纵坐标范围被设置为 0 到 12。
你可以根据自己的需要修改参数来设置不同的纵坐标范围。
阅读全文