Serialized Form


Package weka.associations.classification

Class weka.associations.classification.CaRuleGeneration extends RuleGeneration implements Serializable

Class weka.associations.classification.CrList extends java.lang.Object implements Serializable

Serialized Fields

m_head

CrListElement m_head
The head of the list.


m_tail

CrListElement m_tail
The tail of the list.


m_element

CrListElement m_element
The actual element.

Class weka.associations.classification.CrListElement extends java.lang.Object implements Serializable

Serialized Fields

m_succ

CrListElement m_succ
The successor in the list.


m_pred

CrListElement m_pred
The predecessor in the list.


m_listAttributeNumber

int m_listAttributeNumber
The attribute number.


m_listAttributeValue

int m_listAttributeValue
The attribute value.


m_siblingNode

CrNode m_siblingNode
Pointer to a CrNode.


m_minHeight

int m_minHeight
The minimum height of a CrNode (that stores the same as the CrListelement) in a CrTree.

Class weka.associations.classification.CrNode extends java.lang.Object implements Serializable

Serialized Fields

m_attributeNumber

int m_attributeNumber
the attribuite number stored in the node .


m_attributeValue

int m_attributeValue
The attribute value stored in the node .


m_content

FastVector<E> m_content
FastVector storing the content of a node (a rules's consequence and additional information).


m_treeChild

CrNode m_treeChild
Pointer to a child node.


m_treeParent

CrNode m_treeParent
Pointer to the parent node.


m_nextSibling

CrNode m_nextSibling
Pointer to the next sibling node.


m_lastSibling

CrNode m_lastSibling
Pointer to the previous sibling node.


m_nextListSibling

CrNode m_nextListSibling
Pointer to the next node in the associated list.


m_lastListSibling

CrNode m_lastListSibling
Pointer to the previous node in the associated list.


m_listSibling

CrListElement m_listSibling
Pointer to an entry in the associated list.


m_height

int m_height
Height of the node in the tree.

Class weka.associations.classification.CrTree extends PruneCAR implements Serializable

Serialized Fields

m_root

CrNode m_root
The root node of the tree.


m_actual

CrNode m_actual
The actual node of the tree.


m_list

CrList m_list
The CrList attached to the tree structure.


m_sibling

boolean m_sibling
Indicates if node has to be inserted as sibling.


m_instances

Instances m_instances
The instances to which the mined rules belong to (class attribute splitted off)


m_class

Instances m_class
Instances containing only the class attribute


m_storeSiblings

FastVector<E> m_storeSiblings
List to remember sibling nodes when passing through the tree


m_sortedFrequencies

FastVector<E> m_sortedFrequencies
List to remember the sorted order of attribute value pairs


m_counter

int m_counter
counts number of rules in the tree.


m_deleteCount

int m_deleteCount
counts number of rules in the tree.

Class weka.associations.classification.CrTree.FrequencyObjects extends java.lang.Object implements Serializable

Serialized Fields

m_attributeNumber

int m_attributeNumber
The attribute number.


m_attributeValue

int m_attributeValue
The attribute value.


m_frequency

int m_frequency
The frequency value of an item (attribute-value pair).

Class weka.associations.classification.JCBAPruning extends CrTree implements Serializable

Serialized Fields

m_cf

float m_cf
The confidence value for the optional pruning step.


m_prunedRules

int m_prunedRules
The number of pruned rules in the optionol pruning step.


m_numberUnprunedRules

int m_numberUnprunedRules
The initial number of rules.


m_noPessError

boolean m_noPessError
Flag indicating whether optional (pessimistic-error-rate-based pruning).


m_precedence

FastVector<E>[] m_precedence
FastVector containing the sort order information for a set of rules.


m_instancesWithClass

Instances m_instancesWithClass
the instances including the class attribute.

Class weka.associations.classification.LabeledItemSet extends ItemSet implements Serializable

Serialized Fields

m_classLabel

int m_classLabel
The class label.


m_ruleSupCounter

int m_ruleSupCounter
The support of the rule.

Class weka.associations.classification.PrecedencePruning extends JCBAPruning implements Serializable

Serialized Fields

m_default

int m_default
The default class.

Class weka.associations.classification.PruneCAR extends java.lang.Object implements Serializable


Package weka.classifiers.rules.car.utils

Class weka.classifiers.rules.car.utils.Stopwatch extends java.lang.Object implements Serializable

Serialized Fields

startTime

java.util.Date startTime
The start time.


endTime

java.util.Date endTime
The end time.


running

boolean running
Flag indicating whether or not it is still running.


started

boolean started
Flag indicating whether or not it is started at all.