edu.udo.cs.yale.example
Class ConditionedExampleSet

java.lang.Object
  extended by edu.udo.cs.yale.operator.AbstractIOObject
      extended by edu.udo.cs.yale.operator.ResultObjectAdapter
          extended by edu.udo.cs.yale.example.AbstractExampleSet
              extended by edu.udo.cs.yale.example.ExampleSetAdapter
                  extended by edu.udo.cs.yale.example.ConditionedExampleSet
All Implemented Interfaces:
ExampleSet, IOObject, ResultObject, java.lang.Cloneable, java.lang.Iterable<Example>

public class ConditionedExampleSet
extends ExampleSetAdapter

Hides Examples that do not fulfill a given Condition. Uses a ConditionExampleReader. Please note that the method updateCondition() must be invoked each time the condition changed its acceptance behaviour!

Version:
$Id: ConditionedExampleSet.java,v 2.7 2006/09/30 00:05:30 ingomierswa Exp $
Author:
Ingo Mierswa

Field Summary
private  Condition condition
           
private  int[] mapping
           
private  int size
           
 
Fields inherited from class edu.udo.cs.yale.example.ExampleSetAdapter
delegate
 
Fields inherited from interface edu.udo.cs.yale.example.ExampleSet
ATTRIBUTE_NAME, BATCH_NAME, CLUSTER_NAME, CONFIDENCE_NAME, ID_NAME, KNOWN_ATTRIBUTE_TYPES, LABEL_NAME, PREDICTION_NAME, TYPE_ATTRIBUTE, TYPE_BATCH, TYPE_CLUSTER, TYPE_ID, TYPE_LABEL, TYPE_PREDICTION, TYPE_WEIGHT, WEIGHT_NAME
 
Constructor Summary
ConditionedExampleSet(ConditionedExampleSet exampleSet)
          Clone constructor.
ConditionedExampleSet(ExampleSet parent, Condition condition)
          Creates a new example which used only examples fulfilling the given condition.
 
Method Summary
 Example getExample(int index)
          Returns the i-th example fulfilling the condition.
 java.util.Iterator<Example> iterator()
          Returns a ConditionExampleReader.
 int size()
          Counts the number of examples which fulfills the condition.
 void updateCondition()
          This method should be invoked after changing the condition, i.e. if the acceptance behavior of the condition has changed.
 
Methods inherited from class edu.udo.cs.yale.example.ExampleSetAdapter
addAttribute, clearUserData, getAttribute, getAttribute, getExampleFromId, getExampleReader, getExampleTable, getNumberOfAttributes, getSize, getSpecialAttribute, getSpecialAttributeNames, getSpecialAttributes, getUserData, getUserDataKeys, remapAllIds, removeAttribute, replaceAttribute, setSpecialAttribute, setUserData
 
Methods inherited from class edu.udo.cs.yale.example.AbstractExampleSet
addAllAttributes, clearPredictedLabel, clearWeight, clone, contains, containsValueType, copy, createClusterAttribute, createDataTable, createSpecialAttribute, createWeightAttribute, equals, getActions, getBlockEndIndex, getCluster, getId, getLabel, getName, getPredictedLabel, getVisualisationComponent, getWeight, recalculateAllAttributeStatistics, recalculateAttributeStatistics, recalculateAttributeStatistics, removeAllAttributes, removeAttribute, setAttributes, setCluster, setId, setLabel, setPredictedLabel, setWeight, toString, writeAttributeFile, writeDataFile, writeSparseAttributeFile, writeSparseDataFile
 
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter
addAction, toHTML, toResultString
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject
read, read, read, write, write
 
Methods inherited from class java.lang.Object
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface edu.udo.cs.yale.operator.ResultObject
toResultString
 
Methods inherited from interface edu.udo.cs.yale.operator.IOObject
write, write
 

Field Detail

condition

private Condition condition

size

private int size

mapping

private int[] mapping
Constructor Detail

ConditionedExampleSet

public ConditionedExampleSet(ExampleSet parent,
                             Condition condition)
Creates a new example which used only examples fulfilling the given condition.


ConditionedExampleSet

public ConditionedExampleSet(ConditionedExampleSet exampleSet)
Clone constructor.

Method Detail

updateCondition

public void updateCondition()
This method should be invoked after changing the condition, i.e. if the acceptance behavior of the condition has changed. This is not necessary for most conditions but might be for conditions which are dynamically changed.


iterator

public java.util.Iterator<Example> iterator()
Returns a ConditionExampleReader.

Specified by:
iterator in interface java.lang.Iterable<Example>
Overrides:
iterator in class ExampleSetAdapter


getExample

public Example getExample(int index)
Returns the i-th example fulfilling the condition.

Specified by:
getExample in interface ExampleSet
Overrides:
getExample in class ExampleSetAdapter


size

public int size()
Counts the number of examples which fulfills the condition.

Specified by:
size in interface ExampleSet
Overrides:
size in class ExampleSetAdapter



Copyright © 2001-2006