python修改y轴的坐标范围为0-1
时间: 2023-03-28 07:03:00 浏览: 145
python坐标变换
可以使用 matplotlib 库中的 ylim() 函数来修改 y 轴的坐标范围为 -1。具体代码如下:
import matplotlib.pyplot as plt
# 生成数据
x = [1, 2, 3, 4, 5]
y = [.2, .5, .8, .3, .9]
# 绘制折线图
plt.plot(x, y)
# 修改 y 轴坐标范围为 -1
plt.ylim(, 1)
# 显示图像
plt.show()
阅读全文