0% found this document useful (0 votes)
85 views

Association Rule Mining

The document contains 5 baskets of items and provides the support and confidence values for various item combinations. It asks for the support of Screen Guard (0.8) and Power Bank (0.6), and the confidence of Screen Guard -> Mobile Cover (0.5) and Power Bank -> Mobile Cover (0.33). It also identifies the consequent in the rule Screen Guard, Mobile Cover -> Power Bank as Power Bank and lists the formula for lift.

Uploaded by

Se Sathya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
85 views

Association Rule Mining

The document contains 5 baskets of items and provides the support and confidence values for various item combinations. It asks for the support of Screen Guard (0.8) and Power Bank (0.6), and the confidence of Screen Guard -> Mobile Cover (0.5) and Power Bank -> Mobile Cover (0.33). It also identifies the consequent in the rule Screen Guard, Mobile Cover -> Power Bank as Power Bank and lists the formula for lift.

Uploaded by

Se Sathya
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

basket1 = {'Power Bank', 'Screen Guard' , 'Travel Charger'}

basket2 = {'Screen Guard', 'Bluetooth Headset', 'Mobile Cover'}


basket3 = {'Screen Guard','Arm Band','Mobile Cover'}
basket4 = {'Power Bank','Screen Guard','Leather Pouch'}
basket5 = {'Bluetooth Headset', 'Power Bank' , 'Mobile Cover'}

What is the confidence for Screen Guard -> Mobile Cover ? 0.5

basket1 = {'Power Bank', 'Screen Guard' , 'Travel Charger'}


basket2 = {'Screen Guard', 'Bluetooth Headset', 'Mobile Cover'}
basket3 = {'Screen Guard','Arm Band','Mobile Cover'}
basket4 = {'Power Bank','Screen Guard','Leather Pouch'}
basket5 = {'Bluetooth Headset', 'Power Bank' , 'Mobile Cover'}

What is the support for Screen Guard ?0.8

basket1 = {'Power Bank', 'Screen Guard' , 'Travel Charger'}


basket2 = {'Screen Guard', 'Bluetooth Headset', 'Mobile Cover'}
basket3 = {'Screen Guard','Arm Band','Mobile Cover'}
basket4 = {'Power Bank','Screen Guard','Leather Pouch'}
basket5 = {'Bluetooth Headset', 'Power Bank' , 'Mobile Cover'}

What is the support for Power Bank ?0.6

basket1 = {'Power Bank', 'Screen Guard' , 'Travel Charger'}


basket2 = {'Screen Guard', 'Bluetooth Headset', 'Mobile Cover'}
basket3 = {'Screen Guard','Arm Band','Mobile Cover'}
basket4 = {'Power Bank','Screen Guard','Leather Pouch'}
basket5 = {'Bluetooth Headset', 'Power Bank' , 'Mobile Cover'}

What is the confidence for Power Bank -> Mobile Cover ?0.33

In the Association Rule [ Screen Guard , Mobile Cover -> Power Bank ] , what is the
consequent ?powerbank

Proportion of transactions with A and B / (Proportion of transactions with A) *


(Proportion of transactions with B) . What is this formula ?lift(A-->B)

What are the pre-requisites for generating an Association Rule ? Support and
Confidence

You are a Data Scientist in an e-commerce company . You are analyzing all the
transactions that happened over the past 1 week in your site. You observe that of
the five hundred transactions that happened , two hundred of them had a mobile
phone in them. What is the support for mobile phones in the last 1 week ?0.4

Which property states that an itemset can be considered frequent only if all the
items in the set are frequent ? Upward Closure Property

Left hand side of an Association Rule is called ? Antecedent


What metric is first calculated for each item in the apriori algorithm ? support

The confidence of (A->B) is not always same as confidence of (B->A) . true

The FP Growth algorithm is not memory efficient. false

What is considered a challenge in implementing the Apriori Algorithm ? Sometimes


too few item sets that satisfy the minimum support

Right hand side of an Association Rule is called ? Consequent

You might also like