python读取excel两列数据变为折线图
时间: 2023-12-12 10:05:21 浏览: 130
delphiXE10.3 读取excel内容,生成折线图,并另存文件
你可以使用Python中的pandas和matplotlib库来读取Excel文件中的两列数据并绘制折线图。下面是一个简单的示例代码:
```python
import pandas as pd
import matplotlib.pyplot as plt
# 读取Excel文件
df = pd.read_excel('your_file.xlsx')
# 获取两列数据
x = df['column1']
y = df['column2']
# 绘制折线图
plt.plot(x, y)
plt.xlabel('X轴标题')
plt.ylabel('Y轴标题')
plt.title('折线图')
plt.show()
```
请确保将代码中的 `'your_file.xlsx'` 替换为你实际的Excel文件路径,以及将 `'column1'` 和 `'column2'` 替换为你要绘制的两列数据的列名。你可以根据需要修改X轴和Y轴的标题以及图表的标题。运行代码后,将会显示生成的折线图。
阅读全文