|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FrequentItemSet.Type | |
---|---|
org.knime.base.node.mine.subgroupminer.apriori | This package contains two algorithm implementations for the SubgroupMinerNode. |
org.knime.base.node.mine.subgroupminer.freqitemset | This package contains the necessary data structures for the subgroup mining. |
Uses of FrequentItemSet.Type in org.knime.base.node.mine.subgroupminer.apriori |
---|
Methods in org.knime.base.node.mine.subgroupminer.apriori with parameters of type FrequentItemSet.Type | |
---|---|
void |
ArrayApriori.findFrequentItemSets(List<BitVectorValue> transactions,
double minSupport,
int maxDepth,
FrequentItemSet.Type type,
ExecutionMonitor exec)
Finds the frequent itemsets by going down the tree until the current build level is reached, there it counts those items which are present in the transaction. |
void |
TIDApriori.findFrequentItemSets(List<BitVectorValue> transactions,
double minSupport,
int maxDepth,
FrequentItemSet.Type type,
ExecutionMonitor exec)
This is the method to start with when mining for frequent itemsets. |
void |
AprioriAlgorithm.findFrequentItemSets(List<BitVectorValue> transactions,
double minSupport,
int maxDepth,
FrequentItemSet.Type type,
ExecutionMonitor exec)
This is the method to start with when mining for frequent itemsets. |
List<FrequentItemSet> |
ArrayApriori.getFrequentItemSets(FrequentItemSet.Type type)
Returns the found frequent itemsets according to their type, which can either be FREE, CLOSED or MAXIMAL. |
List<FrequentItemSet> |
TIDApriori.getFrequentItemSets(FrequentItemSet.Type type)
Returns the found frequent itemsets according to their type, which can either be FREE, CLOSED or MAXIMAL. |
List<FrequentItemSet> |
AprioriAlgorithm.getFrequentItemSets(FrequentItemSet.Type type)
Returns the found frequent itemsets according to their type, which can either be FREE, CLOSED or MAXIMAL. |
Uses of FrequentItemSet.Type in org.knime.base.node.mine.subgroupminer.freqitemset |
---|
Methods in org.knime.base.node.mine.subgroupminer.freqitemset that return FrequentItemSet.Type | |
---|---|
static FrequentItemSet.Type |
FrequentItemSet.Type.valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FrequentItemSet.Type[] |
FrequentItemSet.Type.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |