简体   繁体   中英

Append values corresponding to a unique label as a list of values in pandas dataframe

I have got a dataframe:

df  =      A    B
       0   a    1
       1   b    2
       2   a    3 
       3   d    4

I want to update it like:

df  =      A    B
       0   a    [1, 3]
       1   b    [2] 
       2   d    [4]

You can groupby column A and convert the grouped elements in B to lists with apply :

df.groupby('A').B.apply(list).reset_index()

   A       B
0  a  [1, 3]
1  b     [2]
2  d     [4]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM