Horje
group by to a collect datafame Code Example
group by to a collect datafame
In [1]: df = pd.DataFrame( {'a':['A','A','B','B','B','C'], 'b':[1,2,5,5,4,6]})
        df

Out[1]: 
   a  b
0  A  1
1  A  2
2  B  5
3  B  5
4  B  4
5  C  6

In [2]: df.groupby('a')['b'].apply(list)
Out[2]: 
a
A       [1, 2]
B    [5, 5, 4]
C          [6]
Name: b, dtype: object

In [3]: df1 = df.groupby('a')['b'].apply(list).reset_index(name='new')
        df1
Out[3]: 
   a        new
0  A     [1, 2]
1  B  [5, 5, 4]
2  C        [6]




Python

Related
local testing server Python Code Example local testing server Python Code Example
after groupby how to add values in two rows to a list Code Example after groupby how to add values in two rows to a list Code Example
find index of maximum value in list python Code Example find index of maximum value in list python Code Example
mario dance dance revolution Code Example mario dance dance revolution Code Example
read tsv file column Code Example read tsv file column Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7