python使用pandas画折线图
时间: 2023-04-27 15:00:33 浏览: 146
使用Python画折线图
使用Python中的Pandas库可以很方便地绘制折线图。具体步骤如下:
1. 导入Pandas库和Matplotlib库:
```python
import pandas as pd
import matplotlib.pyplot as plt
```
2. 创建数据:
```python
data = {'year': [201, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019],
'sales': [100, 120, 150, 180, 200, 220, 250, 280, 300, 320]}
df = pd.DataFrame(data)
```
3. 绘制折线图:
```python
plt.plot(df['year'], df['sales'])
plt.title('Sales Trend')
plt.xlabel('Year')
plt.ylabel('Sales')
plt.show()
```
以上代码将绘制一条以年份为横轴,销售额为纵轴的折线图。
阅读全文