Inheritance diagram for kddml.Core.DataMining.SequentialPatterns.SequenceExternalFactory:
Public Member Functions | |
SequenceExternalFactory (java.io.File f) throws KDDMLCoreException | |
KDDMLObject | newInstance () throws KDDMLCoreException |
Protected Member Functions | |
abstract Double | buildMinSupport () throws SequenceModelException |
abstract Double | buildMinConfidence () throws SequenceModelException |
abstract Integer | buildNumberOfTransactions () throws SequenceModelException |
abstract Integer | buildMaxNumberOfItemsPerTA () throws SequenceModelException |
abstract Double | buildAvgNumberOfItemsPerTA () throws SequenceModelException |
abstract Integer | buildLengthLimit () throws SequenceModelException |
abstract Integer | buildTimeWindow () throws SequenceModelException |
abstract Integer | buildMinTime () throws SequenceModelException |
abstract Integer | buildMaxTime () throws SequenceModelException |
abstract int | buildNumberOfSequenceRules () |
abstract SequenceRule | buildSequenceRule (int i) throws SequenceModelException |
abstract int | buildNumberOfSequences () |
abstract Sequence | buildSequence (int i) throws SequenceModelException |
abstract int | buildNumberOfSequenceElements () |
abstract SequenceElement | buildSequenceElement (int i) throws SequenceModelException |
abstract int | buildNumberOfItems () |
abstract Item | buildItem (int i) throws SequenceModelException |
Title: KDDML
Description: Knowledge Discovery in Database Environment
Copyright: Copyright (c) 2004
Company: Universita' di Pisa - Dipartimento di Informatica
|
Constructor given the physical file containing the object.
|
|
Return a new instance of the required object.
Reimplemented from kddml.Core.DataMining.ModelExternalFactory. |
|
Returns the minimum support of the sequences. Mininmum support is a real in (0,1]
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the minimum confidence of the sequence rules. Mininmum confidence is a real in (0,1].
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the number of transaction used to build the sequences. Returns a positive integer.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the maximum number of iterms per transaction. Returns a positive integer.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the average number of items per transaction. Returns a positive double.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Return the maximum length of a sequence to be discovered.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Return the time window width: this may be used to separate items associated with an object into discrete events, but only if no clear key already exists for the separate events. Two consecutive items must have a time gap of less than this value to be considered as being part of the same event.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Return the minimum time between items (see buildTimeWindow())
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Return the maximum time between items (see buildTimeWindow())
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the number of sequence rules. Returns a non-negative integer.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the i-th sequence rule belonging to the model.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the number of rules. Returns a positive integer.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the i-th sequence belonging to the model.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the number of sequence elements. Returns a positive integer.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the i-th sequence element belonging to the model.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the number of items. Returns a positive integer.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |
|
Returns the i-th item belonging to the model.
Implemented in kddml.Core.DataMining.SequentialPatterns.PMML2_0SequenceFactory. |