1. Describe the 2-step process of association mining
2. Describe how the Apriori principle is used in the step of rule generate
1Ans: Association Mining is used for finding the strong association rules and reduces time complexity by using thresholds.
It is a two-step process:
2Ans: Apriori is an algorithm which determines frequent itemset. Apriori principle is used in the step of rule generate for generating association rules from a given data set. Apriori Algorithm uses an iterative approach known as "level-wise" search for determining frequent itemsets.
NOTE: Apriori Property States that, "any subset of large itemset must be large". and it is "anti-monotone" (i.e if a set cannot pass a test, all of it's super sets will fail the same test as well)
1. Describe the 2-step process of association mining 2. Describe how the Apriori principle is used...