python画则线图
时间: 2024-01-14 18:21:45 浏览: 143
python 画线
以下是使用Python绘制折线图的示例:
```python
import matplotlib.pyplot as plt
# 定义x轴和y轴的数据
x = [1, 2, 3, 4, 5]
y = [10, 15, 7, 12, 9]
# 绘制折线图
plt.plot(x, y)
# 添加标题和标签
plt.title("Line Chart")
plt.xlabel("X-axis")
plt.ylabel("Y-axis")
# 显示图形
plt.show()
```
这段代码使用了`matplotlib.pyplot`库来绘制折线图。首先,我们定义了x轴和y轴的数据,然后使用`plt.plot()`函数绘制折线图。接下来,我们使用`plt.title()`、`plt.xlabel()`和`plt.ylabel()`函数添加标题和标签。最后,使用`plt.show()`函数显示图形。
阅读全文