Skip to content
Advertisement

all the possible combinations between the values that have the same ID value

I have an input pd dataframe with two columns, one is the sequence and the second is an ID (it is a number between 1-1000). I want to get all the possible combinations between the sequences that have the same ID.

Input:

JavaScript

desired output

JavaScript

I have been reading into itertools but this only gives me all possible combinations without using the ID. Does anyone know how this can be done using python or has any tips for me where I can look?

Advertisement

Answer

Use custom lambda function with itertools.combinations per groups in GroupBy.apply:

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