A program to recognize and reward our most engaged community members
My question is: Why is the Weka Op able to find Itemsets and the FPGrowth Op not ? Even when i lower the min_support FPGrowth doesn't find any Itemsets at all.
Please note that the given data set is only allowed to contain binominal attributes, i.e. nominal attributes with only two different values. Simply use the provided preprocessing operators in order to transform your data set. The necessary operators are the discretization operators for changing the value types of numerical attributes to nominal and the operator Nominal2Binominal for transforming nominal attributes into binominal / binary ones.
<operator name="Root" class="Process" expanded="yes"> <operator name="ArffExampleSource" class="ArffExampleSource"> <parameter key="data_file" value="C:\Documents and Settings\Alien\My Documents\rm_workspace\sample\data\iris.arff"/> </operator> <operator name="Numerical2Polynominal" class="Numerical2Polynominal"> </operator> <operator name="Nominal2Binominal" class="Nominal2Binominal"> </operator> <operator name="W-Apriori" class="W-Apriori" activated="no"> <parameter key="M" value="0.0010"/> <parameter key="I" value="true"/> </operator> <operator name="FPGrowth" class="FPGrowth"> <parameter key="min_number_of_itemsets" value="1"/> <parameter key="min_support" value="0.0010"/> </operator></operator>
<operator name="Root" class="Process" expanded="yes"> <operator name="ArffExampleSource" class="ArffExampleSource"> <parameter key="data_file" value="C:\Documents and Settings\Alien\My Documents\rm_workspace\sample\data\iris.arff"/> </operator> <operator name="Numerical2Polynominal" class="Numerical2Polynominal"> </operator> <operator name="Nominal2Binominal" class="Nominal2Binominal"> </operator> <operator name="FPGrowth" class="FPGrowth"> <parameter key="keep_example_set" value="true"/> <parameter key="find_min_number_of_itemsets" value="false"/> <parameter key="min_support" value="0.1"/> </operator> <operator name="W-Apriori" class="W-Apriori"> <parameter key="C" value="0.6"/> <parameter key="R" value="true"/> <parameter key="c" value="1.0"/> </operator></operator>