Re: Regarding class association rule mining
Date: January 22, 2015 08:09AM
Hi,
Glad that the software is helpful.
I have read about class association rules a while ago. But basically it is rules of the form A1,A2,A3 --> Bx where the antecedent may have multiple items and the consequent has only 1 item that is a value for the target attribute.
You could first mine the association rules and then filter them to keep only the class association rules. It would work but it would be inefficient because it would need to generate many rules that are not class association rules and then to delete them. So, the best option is to use a custom algorithm that mines the class associatino rules directly.
There is no such algorithm in SPMF. But you could probably adapt some for that problem. But in my opiinion should first look at papers about class association rules such as CBA, CPAR, CMAR and other similar algorithms. They will explain how they mine the rules.
Best,