1
我有一個像通過分組和大熊貓添加值拼合列
id, index, name, count1, count2
1, 1, foo, 12, 10
1, 2, foo, 11, 12
1, 3, foo, 23, 12
1, 1, bar, 11, 21
...
2, 1, foo, ...
一個數據幀我希望得到一個數據幀如下
id, name, count1, count2
1, foo, 46,34
1, bar, ..
所以基本上,我想「washaway」指數從這一領域..同時加入count1和count2列
我如何做到這一點在熊貓/ python?