python指定横纵坐标画折线图
时间: 2023-06-29 16:15:52 浏览: 170
使用Python matplotlib作图时,设置横纵坐标轴数值以百分比(%)显示
在Python中,可以使用matplotlib库来实现指定横纵坐标绘制折线图。
以下是一个简单的例子,展示如何使用matplotlib库来绘制一个折线图,并指定横纵坐标范围:
```python
import matplotlib.pyplot as plt
# 定义横坐标数据
x = [1, 2, 3, 4, 5]
# 定义纵坐标数据
y = [3, 6, 2, 8, 4]
# 绘制折线图
plt.plot(x, y)
# 指定横纵坐标范围
plt.xlim(0, 6)
plt.ylim(0, 10)
# 显示图形
plt.show()
```
在这个例子中,我们使用两个列表`x`和`y`分别表示横纵坐标的数据。然后使用`plot()`函数绘制折线图,并使用`xlim()`和`ylim()`函数指定横纵坐标范围。最后使用`show()`函数显示图形。
如果需要在折线图中显示多条线,可以在`plot()`函数中传入多组横纵坐标数据即可。
阅读全文