0
數據幀琛連續列我有一個DF數據框如下:以下重複
Item Size
0 .decash 1
1 .decash 2
2 usdjpy 1
3 .decash 1
4 usdjpy 1
我會轉變爲一個DF2如下(下降重複和總大小):
Item Size
0 .decash 4
1 usdjpy 2
數據幀琛連續列我有一個DF數據框如下:以下重複
Item Size
0 .decash 1
1 .decash 2
2 usdjpy 1
3 .decash 1
4 usdjpy 1
我會轉變爲一個DF2如下(下降重複和總大小):
Item Size
0 .decash 4
1 usdjpy 2
你可以使用groupby(..., as_index=False)
和sum()
:
In [270]: df.groupby('Item', as_index=False)['Size'].sum()
Out[270]:
Item Size
0 .decash 4
1 usdjpy 2
它的工作原理!謝謝你的幫助 – user1673806