我在这个结构中的数据框中有数据:
Item Count Date
A 5 25-May-18
B 5 25-May-18
C 5 25-May-18
A 6 24-May-18
B 6 24-May-18
C 6 24-May-18
A 7 23-May-18
B 7 23-May-18
C 7 23-May-18
我正在寻找以这种方式构建的数据:
Date A B C
25-May-18 5 5 5
24-May-18 6 6 6
23-May-18 7 7 7
这是我的代码:
dropped_col.pivot_table(dropped_col, values = 'count', index='date', columns = 'item').reset_index()
但是我收到了一个错误:
in() ----> 1 dropped_col.pivot_table(dropped_col,values ='count',index ='date',columns ='item')。reset_index()
TypeError:pivot_table()为参数'values'
获取了多个值
关于我能做些什么的任何建议都有助于解决这个问题?
由于