用一个DataFrame画图的python代码
时间: 2024-05-04 18:17:26 浏览: 106
python matplotlib 画dataframe的时间序列图实例
5星 · 资源好评率100%
以下是用 pandas DataFrame 画图的一个例子:
```python
import pandas as pd
import matplotlib.pyplot as plt
# 创建 DataFrame
df = pd.DataFrame({'Year': [2015, 2016, 2017, 2018, 2019],
'Sales': [100, 200, 300, 400, 500]})
# 绘制折线图
df.plot(x='Year', y='Sales', kind='line', marker='o')
# 设置图表标题和轴标签
plt.title('Sales by Year')
plt.xlabel('Year')
plt.ylabel('Sales')
# 显示图表
plt.show()
```
这个例子中,我们创建了一个 DataFrame,包含了 5 年的销售数据,然后使用 `plot` 方法绘制了一个折线图。我们还使用 `title`、`xlabel` 和 `ylabel` 方法设置了图表的标题和轴标签。最后,我们使用 `show` 方法显示图表。
阅读全文