So I am trying to program Apriori Algorithm. I have here
L1= ['apple', 'banana','orange','mango]
This list already passed the support threshold, now I have to combine the items for another support threshold which should look like this:
C2 = [['apple','banana'],['apple','orange'],['apple','mango']]