在熊猫中分组行

时间:2020-03-11 10:13:28

标签: python pandas group-by grouping

我有以下数据框:

Customer    PhoneNum    Country    Test_result
John        123456      USA        A     
John        123456      USA        B     
John        123456      USA        C     
Hans        987654      GER        A     
Hans        987654      GER        B     
Pope        000000      ITA        B     
Pope        000000      ITA        C     
Pope        000000      ITA        D  

如何以每个客户只有一行的方式对行进行分组,所以我将得到以下输出:

Customer    PhoneNum    Country    Test_result_A    Test_result_B   Test_result_C    Test_result_D
John        123456      USA        1                1               1                0     
Hans        987654      GER        1                1               0                0
Pope        000000      ITA        0                1               1                1     

此数据框非常大,我正在使用熊猫。这怎么可能?

谢谢!

0 个答案:

没有答案