"FPGrowth/Assiciationrule Generator - filter useless rules"
Hi,
I am currently testing the FPGrowth algorithm using an example set which is structured like this
id attribute1 attribute2 attribute3
-----------------------------------------------------
4711 true false true
4712 false false false
...
Now, FPGrowth followed by AssociationRuleGenerator generates rules like
IF attribute1 = 0 THEN attribute2 => 0
These rules are not important (at least for me), because they just say that if attribute1 does not appear, attribute2 does not appear.
Is there any other way to filter such rules from the FrequentItemset? I tested the FPGrowth-Parameter "must contain" with the simple regex "attribute1 = 1", but it had no effect
Thanks for your help !
Werner