简体   繁体   中英

Normalize column in pandas dataframe by sum of grouped values of another column

I'm a bit stuck on trying to normalize some entries of a column in a pandas dataframe. So I have a dataframe like this:

df = pd.DataFrame({
        'user':[0,0,1,1,1,2,2], 
        'item':['A','B', 'A', 'B','C','B','C'],
        'bought':[1,1,1,3,3,2,3]})
df
bought|item|user
----------------
1     |A   |0
1     |B   |0
1     |A   |1
3     |B   |1
3     |C   |1
2     |B   |2
3     |C   |2

I would like to get the number of each item bought normalized by the the total bought by each user.

In other words, for each entry of 'bought' I'd like to divide it by the sum of the total bought for that user (as another column). In this case the output I'd like is this (but the 'normalized' column doesn't have to be fractions):

bought|item|user|normalized
--------------------------
1     |A   |0   |1/2
1     |B   |0   |1/2
1     |A   |1   |1/7
3     |B   |1   |3/7
3     |C   |1   |3/7
2     |B   |2   |2/5
3     |C   |2   |3/5

So far I've grouped by user and gotten the sum by user:

grouped = df.groupby(by='user')
grouped.aggregate(np.sum)

But at this point I'm stuck. Thanks!

pandas map

df.assign(normalized=df.bought.div(df.user.map(df.groupby('user').bought.sum())))

pandas transform

df.assign(normalized=df.bought.div(df.groupby('user').bought.transform('sum')))

both yield

   bought item  user  normalized
0       1    A     0    0.500000
1       1    B     0    0.500000
2       1    A     1    0.142857
3       3    B     1    0.428571
4       3    C     1    0.428571
5       2    B     2    0.400000
6       3    C     2    0.600000

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