Class | Description |
---|---|
AbstractItemset |
This is an abstract class for an itemset (a set of items.
|
AbstractOrderedItemset |
This is an abstract class indicating general methods
that an ordered itemset should have, and is designed for ordered itemsets where items are sorted
by lexical order and no item can appear twice.
|
AlgoCMDeogun |
This is the original implementation of the CMDeo algorithm
for mining sequential rules common to several sequences.
|
AlgoRULEGROWTH |
This is the original implementation of the RULEGROWTH algorithm for mining sequential rules
common to several sequences where antecedent and consequent are unordered itemsets.
|
AlgoRULEGROWTHTemp2 |
This is the original implementation of the RULEGROWTH algorithm for mining sequential rules
common to several sequences where antecedent and consequent are unordered itemsets.
|
Itemset |
This class represents an itemset (a set of items) where the itemset is an array of integers
sorted by lexical order where no item can appear twice, and
the ids of transactions/sequences containing this itemset is represented
as a set of integers.
|
Occurence |
This class represent the first and last occurences of an itemset in a sequence, as defined
in the RuleGrowth algorithm.
|
Rule |
This class represents a sequential rule found by the CMDeo algorithm.
|
Rules |
This class represents a group of sequential rules found by the CMDeo algorithm.
|
Sequence |
Implementation of a sequence as a list of itemsets, where an itemset is a list of integers.
|
SequenceDatabase |
Implementation of a sequence database, where each sequence is implemented
as a list of integers and should have a unique id.
|