dataframe 某列画折线图
时间: 2023-09-14 11:11:46 浏览: 114
数据分析画折线
好的,您想知道如何在 dataframe 的某一列上绘制折线图。可以使用 pandas 库中的 plot 函数。下面是一个示例代码:
```python
import pandas as pd
import matplotlib.pyplot as plt
# 创建 DataFrame 数据
data = {'year': [2010, 2011, 2012, 2013, 2014, 2015],
'sales': [50, 80, 120, 200, 300, 500]}
df = pd.DataFrame(data)
# 绘制折线图
plt.plot(df['year'], df['sales'])
plt.xlabel('Year')
plt.ylabel('Sales')
plt.show()
```
在上面的代码中,我们首先创建一个包含年份和销售额数据的字典,然后将其转换为 DataFrame 数据。接下来,使用 plot 函数在 df 的 'year' 列和 'sales' 列之间绘制折线图。最后,使用 xlabel 和 ylabel 函数为 x 轴和 y 轴添加标签,然后调用 show 函数显示图形。
阅读全文