Skip to content
Advertisement

How to do explode and keep a fair proportion of number value for each new row Pandas

I have this dataframe:

JavaScript

I would like to use explode function for column “A” and then to keep right and fair proportion for each exploded row in case with column “B” . So the result should look like this:

JavaScript

Would this be possible with the explode function? I would manage to come to this result with for row in data.itertuples(): but the for loop is so slow in case with large dataframe. So do you have idea how to solve this with explode or with some other fast way?

I would be very grateful with any help.

Advertisement

Answer

You can explode “A”; then groupby the index and transform count method (to count the number of each index) and divide the elements in 'B' by their corresponding index count.

JavaScript

Output:

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement