python读取excel数据利用数据绘制折线图
时间: 2024-02-17 07:29:02 浏览: 69
Python折线图绘制
可以使用Python中的pandas和matplotlib库来读取excel数据并绘制折线图。
首先需要安装pandas和matplotlib库:
```
pip install pandas
pip install matplotlib
```
接下来,假设我们有一个名为example.xlsx的excel文件,其中包含以下数据:
| 日期 | 数量 |
|------------|------|
| 2021-01-01 | 10 |
| 2021-01-02 | 15 |
| 2021-01-03 | 12 |
| 2021-01-04 | 20 |
| 2021-01-05 | 18 |
| 2021-01-06 | 22 |
可以使用以下代码读取excel数据和绘制折线图:
```python
import pandas as pd
import matplotlib.pyplot as plt
# 读取excel文件数据
df = pd.read_excel('example.xlsx')
# 绘制折线图
plt.plot(df['日期'], df['数量'])
# 设置x轴标签和y轴标签
plt.xlabel('日期')
plt.ylabel('数量')
# 设置图表标题
plt.title('数量变化趋势图')
# 显示图表
plt.show()
```
运行上述代码即可绘制出折线图。如果需要保存图表,可以使用`plt.savefig()`函数来保存,例如:
```python
plt.savefig('line_chart.png')
```
这将保存图表为名为`line_chart.png`的PNG图像文件。
阅读全文