枢轴功能转换熊猫

时间:2017-12-20 16:11:51

标签: python pandas

我有一个数据框,df2

  Index         40       50     75   100
  August        12       0      0    0
  September     5        6      0    0
  October       0        0      5    10

现在应该是:   其中每个月表示列ID的计数

df3= pd.DataFrame(df2, columns= ['date','ID','count'])
df3=df.pivot(index='date', columns='ID',values='count').reset_index().fillna(0)
print(df3)
df3.set_index('date').plot()
pyplot.show()

以下是代码:

{{1}}

但是我收到了这个错误: ValueError:索引包含重复的条目,无法重构matplotlib.figure.Figure at 0x1c0521496a0

0 个答案:

没有答案