给定两个一维数组,用python画折现图
时间: 2023-03-30 10:01:24 浏览: 140
Python reshape的用法及多个二维数组合并为三维数组的实例
可以使用Python中的Matplotlib库来画折线图。以下是一个简单的示例代码:
```python
import matplotlib.pyplot as plt
# 两个一维数组
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
# 画折线图
plt.plot(x, y)
# 设置图表标题和坐标轴标签
plt.title("折线图示例")
plt.xlabel("X轴")
plt.ylabel("Y轴")
# 显示图表
plt.show()
```
你可以将自己的数据替换到示例代码中的x和y数组中,然后运行代码即可得到折线图。
阅读全文