So a recent question made me aware of the rather cool apriori algorithm. I can see why it works, but what I'm not sure about is practical uses. Presumably the main reason to compute related sets of items is to be able to provide recommendations for someone based on their own purchases (or owned items, etcetera). But how do you go from a set of related sets of items to individual recommendations?

The Wikipedia article finishes:

The second problem is to generate association rules from those large itemsets with the constraints of minimal confidence. Suppose one of the large itemsets is Lk, Lk = {I1, I2, … , Ik}, association rules with this itemsets are generated in the following way: the first rule is {I1, I2, … , Ik-1}⇒ {Ik}, by checking the confidence this rule can be determined as interesting or not. Then other rule are generated by deleting the last items in the antecedent and inserting it to the consequent, further the confidences of the new rules are checked to determine the interestingness of them. Those processes iterated until the antecedent becomes empty

I'm not sure how the set of association rules helps in determining the best set of recommendations either, though. Perhaps I'm missing the point, and apriori is not intended for this use? In which case, what is it intended for?

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

So the apriori algorithm is no longer the state of the art for Market Basket Analysis (aka Association Rule Mining). The techniques have improved, though the Apriori principle (that the support of a subset upper bounds the support of the set) is still a driving force.

In any case, the way association rules are used to generate recommendations is that, given some history itemset, we can check each rule's antecedant to see if is contained in the history. If so, then we can recommend the rule's consequent (eliminating cases where the consequent is already contained in the history, of course).

We can use various metrics to rank our recommendations, since with a multitude of rules we may have many hits when comparing them to a history, and we can only make a limited number of recommendations. Some useful metrics are the support of a rule (which is the same as the support of the union of the antecedant and the consequant), the confidence of a rule (the support of the rule over the support of the antecedant), and the lift of a rule (the support of the rule over the product of the support of the antecedant and the consequent), among others.

link|improve this answer
Comparing every rule against a given user's set seems extremely inefficient - isn't this a performance issue? Is it possible to optimize this? – Nick Johnson Aug 10 '09 at 16:17
Well, you can sort your rules by the metrics once, and then, for each history, stop checking after sufficient rules match the history. Alternately, you could create lattices of rules by antecedant, and only check the child rules if their parent rules match. You could cluster the rules by antecedant too. – rampion Aug 10 '09 at 17:38
Good ideas. Ranking seems like it would still only reduce the amount of work by a constant factor - most rules won't match. Indexing seems a better idea, though I'm not aware of any indexes that work well for finding entries that are a subset of the search query. – Nick Johnson Aug 10 '09 at 18:40
feedback

Look here for simple explanation http://nikhilvithlani.blogspot.com/2012/03/apriori-algorithm-for-data-mining-made.html

link|improve this answer
This explains how the algorithm works, but I already knew that - I was asking about applications. – Nick Johnson Mar 6 at 21:03
Okay so using this algorithm what you can do is find the frequent set of k items .... so suppose a user comes on your web site and buys one item ans suppose you want to give him 3 recommendations .... so what you do is find a frequent dataset with k=4 ..... that means you are finding all the data sets with 4 elements that are frequently bought together ..... after that you find in which of those sets does the item user bought belongs to and then you return the remaining 3 elements in that set as the recommendations .... I think its explained on the blog too in short ... where it says why use? – user1239631 Mar 7 at 6:56
Did that help answer your question – user1239631 Mar 7 at 6:56
feedback

If you want some details about how Apriori can be used for classification you coul read the paper about the CBA algorithm:

Bing Liu, Wynne Hsu, Yiming Ma, "Integrating Classification and Association Rule Mining." Proceedings of the Fourth International Conference on Knowledge Discovery and Data Mining (KDD-98, Plenary Presentation), New York, USA, 1998

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.