Inheritance diagram for kddml.Core.DataMining.SequentialPatterns.SequenceRuleManager:
Public Member Functions | |
int | getNumberOfSequenceElements () |
Integer | getOccurrence () |
Double | getSupport () |
Double | getConfidence () |
SequenceManager | getAntecedent () |
Iterator | getAntecedentTimes () |
DelimiterManager | getDelimiter () |
TimeManager | getTime () |
SequenceManager | getConsequent () |
Iterator | getConsequentTimes () |
void | setTime (TimeManager time) |
void | setAntecedentTimes (TimeManager[] times) throws IllegalArgumentException |
void | setConsequentTimes (TimeManager[] times) throws IllegalArgumentException |
boolean | contains (SequenceManager sequence) |
boolean | equals (Object sequence_rule) |
String | toString () |
A sequence rule consists of an antecedent sequence and a consequent sequence, separated by a delimiter and, possibly, time.
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2004
Company: Universita' di Pisa - Dipartimento di Informatica
|
Return the total number of sequence elements in both the antecedent and consequent sequences.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return number of occurrence of this rule: the number of objects in the data for which the antecedent and consequent sequences hold true.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return support of this rule: the ratio of the number of objects in the data for which the antecedent and consequent Sequences hold true, to the total number of objects in the data. Support is expressed as probabilistic number between 0 and 1.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return confidence of this rule: probability of the consequent following the antecedent. Calculated as the number of occurrences of a sequence divided by the number of occurrences of the antecedent. Confidence is expressed as probabilistic number between 0 and 1.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return antecedent sequence composing this rule.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return an iterator over times between elements in antecedent sequence.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return delimiter between antecedent and consequent sequence.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return time between antecedent and consequent sequence.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return consequent sequence composing this rule.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return an iterator over times between elements in consequent sequence.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Set time between antecedent and consequent sequences.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Set times between elements in antecedent sequence. Each TimeManager object represent time information between two following elements in sequence. E.g. let be s = <e1, e2, e3> the antecedent sequence, setting times for s, mean to give two time information, respectively the time between e1 and e2, and the time between e2 and e3.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Set times between elements in consequent sequence. Each TimeManager object represent time information between two following elements in sequence. E.g. let be s = <e1, e2, e3> the consequent sequence, setting times for s, mean to give two time information, respectively the time between e1 and e2, and the time between e2 and e3.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Check if antecedent or consequent sequences contain given sequence.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Check when two rules are equals. To be equal, two rules must have the same antecedent and consequent sequences.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |
|
Return a string representation of rule.
Implemented in kddml.Core.DataMining.SequentialPatterns.SequenceRule. |