Class AssociationRuleGeneration.Par
- java.lang.Object
-
- elki.itemsetmining.associationrules.AssociationRuleGeneration.Par
-
- All Implemented Interfaces:
Parameterizer
- Enclosing class:
- AssociationRuleGeneration
public static class AssociationRuleGeneration.Par extends java.lang.Object implements Parameterizer
Parameterization class.- Author:
- Frederic Sautter
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractFrequentItemsetAlgorithmfrequentItemAlgoParameter for frequent itemset mining.static OptionIDFREQUENTITEMALGO_IDParameter to specify the frequentItemsetAlgorithm to be used.protected InterestingnessMeasureinterestMeasureParameter for interestingness measure.static OptionIDINTERESTMEASURE_IDParameter to specify the interestingness measure to be used.protected doublemaxmeasureParameter for maximum interestingness measure.static OptionIDMAXMEASURE_IDParameter to specify the maximum threshold for the interestingness measure.protected doubleminmeasureParameter for minimum interestingness measure.static OptionIDMINMEASURE_IDParameter to specify the minimum threshold for the interestingness measure.
-
Constructor Summary
Constructors Constructor Description Par()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconfigure(Parameterization config)Configure the class.AssociationRuleGenerationmake()Make an instance after successful configuration.
-
-
-
Field Detail
-
FREQUENTITEMALGO_ID
public static final OptionID FREQUENTITEMALGO_ID
Parameter to specify the frequentItemsetAlgorithm to be used.
-
INTERESTMEASURE_ID
public static final OptionID INTERESTMEASURE_ID
Parameter to specify the interestingness measure to be used.
-
MINMEASURE_ID
public static final OptionID MINMEASURE_ID
Parameter to specify the minimum threshold for the interestingness measure.
-
MAXMEASURE_ID
public static final OptionID MAXMEASURE_ID
Parameter to specify the maximum threshold for the interestingness measure.
-
frequentItemAlgo
protected AbstractFrequentItemsetAlgorithm frequentItemAlgo
Parameter for frequent itemset mining.
-
interestMeasure
protected InterestingnessMeasure interestMeasure
Parameter for interestingness measure.
-
minmeasure
protected double minmeasure
Parameter for minimum interestingness measure.
-
maxmeasure
protected double maxmeasure
Parameter for maximum interestingness measure.
-
-
Method Detail
-
configure
public void configure(Parameterization config)
Description copied from interface:ParameterizerConfigure the class.Note: the status is collected by the parameterization object, so that multiple errors may arise and be reported in one run.
- Specified by:
configurein interfaceParameterizer- Parameters:
config- Parameterization
-
make
public AssociationRuleGeneration make()
Description copied from interface:ParameterizerMake an instance after successful configuration.Note: your class should return the exact type, only this very broad interface should use
Objectas return type.- Specified by:
makein interfaceParameterizer- Returns:
- a new instance
-
-