python画图如何拉长纵坐标轴
时间: 2023-08-25 12:07:05 浏览: 332
使用Python matplotlib作图时,设置横纵坐标轴数值以百分比(%)显示
您可以使用Matplotlib库中的`set_ylim`函数来设置纵坐标轴的范围,从而拉长纵坐标轴。下面是一个示例代码:
```python
import matplotlib.pyplot as plt
# 创建一个figure对象和一个子图
fig, ax = plt.subplots()
# 生成一些示例数据
x = [1, 2, 3, 4, 5]
y = [10, 20, 30, 40, 50]
# 绘制图形
ax.plot(x, y)
# 设置纵坐标轴范围
ax.set_ylim(0, 60) # 设置纵坐标轴范围为0到60
# 显示图形
plt.show()
```
在上面的代码中,`set_ylim(0, 60)`将纵坐标轴范围设置为0到60,从而拉长了纵坐标轴。您可以根据需要调整范围。
阅读全文