python绘制折线图
时间: 2023-09-24 21:04:08 浏览: 16
可以使用Matplotlib库中的plot函数绘制折线图。例如:
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y)
plt.show()
这段代码将绘制一个简单的折线图,其中x轴坐标为1到5,y轴坐标为2到10。
相关问题
python 绘制折线图
好的,下面是使用 Python 绘制折线图的示例代码:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5] # x轴数据
y = [1, 3, 5, 2, 4] # y轴数据
plt.plot(x, y) # 绘制折线图
plt.xlabel('X') # 设置x轴标签
plt.ylabel('Y') # 设置y轴标签
plt.title('折线图') # 设置标题
plt.show() # 显示图形
```
这段代码使用了 Python 的 Matplotlib 库,通过 `plot()` 函数绘制折线图,然后使用 `xlabel()`、`ylabel()` 和 `title()` 函数设置轴标签和标题,最后使用 `show()` 函数显示图形。你可以根据自己的需求修改数据和样式,自定义绘制出适合自己的折线图。
阅读全文