dm.mine
Interface ClassificationProc

All Known Implementing Classes:
GiniDTClassProc, InfoGainDTClassProc, OLAPRuleLearn

public interface ClassificationProc

Defines interface for a Classification Procedure

Author:
Scott Sanner

Method Summary
 java.util.List mineClassRules(DMQL.FindClassRules com, DataCube d)
          Perform a data mining procedure to find classification rules according to the parameters of com and operating on a DataCube.
 

Method Detail

mineClassRules

public java.util.List mineClassRules(DMQL.FindClassRules com,
                                     DataCube d)
Perform a data mining procedure to find classification rules according to the parameters of com and operating on a DataCube.
Parameters:
com - The command defining the paramters of this classification procedure
d - The datacube to mine
Returns:
A List object containing rules. The type of this object is undefined. At the very least, it must simply implement the toString() method so that it's rule contents can be displayed for the user.