python excel 折线图
时间: 2023-02-09 08:45:02 浏览: 208
在 Python 中,可以使用一些第三方库来生成 Excel 折线图。其中,最常用的库可能是 `pandas` 和 `openpyxl`。
下面是使用 `pandas` 库创建 Excel 折线图的示例代码:
```python
import pandas as pd
# 创建一个示例数据集
df = pd.DataFrame({'Year': [2015, 2016, 2017, 2018, 2019],
'Sales': [1000, 1100, 1200, 1300, 1400]})
# 将数据集写入 Excel 文件
df.to_excel('sales.xlsx', index=False)
# 使用 pandas 库的 plot() 方法绘制折线图
df.plot(x='Year', y='Sales', kind='line')
# 保存图表并在 Excel 中显示
df.plot(x='Year', y='Sales', kind='line').figure.savefig('line.png')
pd.read_excel('sales.xlsx').plot(x='Year', y='Sales', kind='line').figure.savefig('line.png')
```
在上面的代码中,我们首先使用 `pandas` 库的 `to_excel()` 方法将数据集写入 Excel 文件,然后使用 `plot()` 方法绘制折线图,最后使用 `figure.savefig()` 方法将图表保存到本地,并使用 `pd.read_excel()` 方法将图表显示在 Excel 中。
如果你想使用 `openpyxl` 库来创建 Excel 折线图,可以参考以下示例代码:
```python
from openpyxl import Workbook
from openpyxl.chart import LineChart, Reference
# 创建一个示例数据集
data = [
['Year', 2015, 2016, 2017, 2018, 2019],
['Sales', 1000, 1100, 1200, 1300, 1400],
]
# 创建一个工作簿
wb = Workbook()
ws = wb.active
# 将数据写入工作表
for row in data
阅读全文