Association Rule Mining across two market baskets
I am quite familiar with Association Rule mining but I need to use it to associate ACROSS two market baskets instead of finding support WITHIN a market basket.
Imagine customers come to a Store A and buy a certain number of products. The same customers go to Store B and buy another set of products. I want to associate between the two Stores and not within the Store.
So I want to make "A --> B" statements like
"Customers that Bought x and y from Store A also purchased z from Store B"
I could lump all the purchases as one market basket and run some association mining algo on it but in that case the association algo will not control for where the items were purchased.
Clearly one alternative is to find all rules using one market basket and then exclude the ones where the A isn't pure in the A -> B relationship.
Any other ideas would be great.