References for Complementary Recommendation System

I am looking for references to develop a complementary recommendation system. For e.g if a user buys a cell phone, a recommendation is provided to buy a mobile case, power bank etc. There are lot of examples on Collaborative filtering but nothing i have found for Complementary which includes an implementation in a language(like python).

something like these


Thanks in advance!!!

I am unsure which algorithm would best suit you problem but I recommend looking up Scikit Learning. This is a library used with Python. I used it to develop a relationship between Wifi Signal Strength and relative position. If it were me and I had to do another project like this, given that I only have a basic knowledge I would graph the data in python and then do some research here https://scikit-learn.org/stable/ . Get an idea of what algorithms might be a good fit for the job. https://github.com/joedel651/rfmappingrover/tree/master/Joe The following link is code from my project. If you need examples on how to import files, merge CSVs, Implement Scikit learning algorithms, etc. Including it in case it helps.

Based on the problem you have specifically maybe you could start with a supervised clustering algorithm. Do a train/test/split based on previous data that relates cell phone to some sort of target data which would be what the user tends to buy along with the cell phone based on historic data on what has been purchased in the past.

I hope this gives you some sort of starting point, good luck!

Thank you @joedel651 for the valuable inputs, definitely it has given a direction for me to proceed. I am trying this https://medium.com/datadriveninvestor/product-recommendation-using-association-rule-mining-for-a-grocery-store-7e7feb6cd0f9

I am trying to solve similar to the one shown in below table

Diaper Baby Wipes Laptop USB
Diaper 100 50 5 0
Baby Wipes 60 100 0 10
Laptop 5 10 100 70
USB 0 0 20 100