Research Article

Attribute Index and Uniform Design Based Multiobjective Association Rule Mining with Evolutionary Algorithm

Pseudocode 1

Pseudocode of creating the attribute index.
attrIdx( , ): create the attribute index of each attribute.
Input: indicates the transaction database; indicates
        the universal itemset, namely contains all attributes.
Output: The attribute indices of the each attribute in .
for  each attribute in the universal itemset
  Idx( ) ;
end for
for  each transaction in database
  define as ;
  for  each attribute in the universal itemset
   if  
    Idx( ) Idx( )      ;
   end if
  end for
end for
return  Idx;