Association Rules algorithm [support,confidence]
-
Samstag, 16. Dezember 2006 15:17
In assotiation rules each rule has a [support, confidence] part. In Microsoft Association Rules there is a [probability,importance] measure in each rule and importance can be greater that 1.
I found the following in msdn but i'm not sure if i understood correctly.MINIMUM_PROBABILITY: Specifies the minimum probability that a rule is true. For example, setting this value to 0.5 specifies that no rule with less than fifty percent probability is generated.
The default is 0.4.MAXIMUM_SUPPORT: Specifies the maximum number of cases in which an itemset can have support. If this value is less than 1, the value represents a percentage of the total cases. Values greater than 1 represent the absolute number of cases that can contain the itemset.
The default is 1.My questions are
1) Can i explain the [probability,importance] in [support,confidence]? If yes, how?
2) What importance>1 means?Thank you in advance.
Alle Antworten
-
Montag, 18. Dezember 2006 08:49
MS Association Rules still has [support, confidence] like any other AR implementation. If you take a rule of the form
A -> B
Support is the number of times the itemset A occurs, and confidence is the probability that B occurs when A occurs. Importance is a different measure that indicates the lift of the rule e.g. the increase in probability of the target over the probability of the target at random, which is why it can be greater than 1.
In the DM viewers, the support is indicated on the Itemset page.
-
Montag, 18. Dezember 2006 17:29
If i have a rule A,B => C and an itemset A,B,C with support 2000 then the support of the rule is 2000? How can i calculate the confidence then?
Thank you for your reply.
-
Dienstag, 19. Dezember 2006 07:26Moderator
If your rule is A,B=>C then:
Confidence == Probability == Numberof(A,B,C) / Numberof(A,B)
-
Dienstag, 19. Dezember 2006 16:46That was very helpful thank you :)
-
Donnerstag, 21. Dezember 2006 14:14Hi all,
I am trying to make an algorithm that also takes into account how "important" an association rule is. I found that "importance" is something that I am missing.
Ho is importance calculated ?
greetz,
Alex -
Freitag, 22. Dezember 2006 18:11Moderator
The formula, with some details, is discussed in this thread:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=290186&SiteID=1
-
Sonntag, 29. Januar 2012 07:02
In assotiation rules each rule has a [support, confidence] part. In Microsoft Association Rules there is a [probability,importance] measure in each rule and importance can be greater that 1.
I found the following in msdn but i'm not sure if i understood correctly.MINIMUM_PROBABILITY: Specifies the minimum probability that a rule is true. For example, setting this value to 0.5 specifies that no rule with less than fifty percent probability is generated.
The default is 0.4.MAXIMUM_SUPPORT: Specifies the maximum number of cases in which an itemset can have support. If this value is less than 1, the value represents a percentage of the total cases. Values greater than 1 represent the absolute number of cases that can contain the itemset.
The default is 1.

