python画图控制纵坐标的范围为小数点后以为怎么写代码
时间: 2024-04-30 13:18:19 浏览: 96
图片坐标设置_python画图坐标设置代码_
5星 · 资源好评率100%
你可以使用 `matplotlib` 库中的 `ylim` 函数来控制纵坐标的范围。下面是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 构造数据
x = [1, 2, 3, 4, 5]
y = [0.123, 0.456, 0.789, 0.234, 0.567]
# 绘制折线图
plt.plot(x, y)
# 设置纵坐标的范围为0到1
plt.ylim(0, 1)
# 显示图像
plt.show()
```
在上面的代码中,我们通过 `ylim` 函数将纵坐标的范围设置为了0到1。你可以根据需要调整这个范围。
阅读全文