edu.udo.cs.yale.example
Class ExampleSetAdapter

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
All Implemented Interfaces:
ExampleSet, IOObject, ResultObject, java.lang.Cloneable, java.lang.Iterable<Example>
Direct Known Subclasses:
AttributeWeightedExampleSet, ConditionedExampleSet, SplittedExampleSet

public class ExampleSetAdapter
extends AbstractExampleSet

This example set delegates all method calls to an underlying example set. Subclasses only need to override necessary methods whose behavior they want to change. Methods implemented by AbstractExampleSet are not re-implemented.
Subclasses usually override iterator(), getExample(int index), size().

Version:
$Id: ExampleSetAdapter.java,v 2.23 2006/03/27 13:21:58 ingomierswa Exp $
Author:
Simon Fischer, Ingo Mierswa

Field Summary
protected  ExampleSet delegate
          The underlying example set the methods calls are delegated to.
 
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
ExampleSetAdapter(ExampleSet exampleSet)
          Constructs a new ExampleSet that delegates all method calls to the given ExampleSet.
ExampleSetAdapter(ExampleSetAdapter exampleSet)
          Clone constructor.
 
Method Summary
 void addAttribute(Attribute attribute)
          Adds a new attribute.
 void clearUserData()
          Clears all user data.
 Attribute getAttribute(int index)
          Returns the Attribute with the given index.
 Attribute getAttribute(java.lang.String name)
          Returns the attribute with the given name.
 Example getExample(int index)
          Returns the i-th example.
 Example getExampleFromId(double id)
          Returns the example with the given id value.
 ExampleReader getExampleReader()
          Deprecated. 
 ExampleTable getExampleTable()
          Returns the underlying example table.
 int getNumberOfAttributes()
          Returns the number of attributes of the examples in this set.
 int getSize()
          Deprecated. 
 Attribute getSpecialAttribute(java.lang.String name)
          Returns the special attribute with the given name or null if no special attribute with this name exists.
 java.util.Collection<java.lang.String> getSpecialAttributeNames()
          Returns a collection of all keys of special attributes.
 java.util.Map<java.lang.String,Attribute> getSpecialAttributes()
          Returns a map of all special attribute names to the corresponding attributes.
 java.lang.Object getUserData(java.lang.String key)
          Returns the user data set by setUserData()
 java.util.Set<java.lang.String> getUserDataKeys()
          Returns all askable keys of user data.
 java.util.Iterator<Example> iterator()
           
 void remapAllIds()
          Remaps all ids.
 void removeAttribute(Attribute attribute)
          Removes an attribute.
 Attribute replaceAttribute(Attribute first, Attribute second)
          Replaces the first attribute by the second.
 void setSpecialAttribute(java.lang.String name, Attribute attribute)
          Adds a special, i.e. named Attribute to the example set.
 void setUserData(java.lang.String key, java.lang.Object data)
          Sets arbitrary user data, e.g. to cache certain performance values etc.
 int size()
          Returns the number of examples in this example set.
 
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

delegate

protected ExampleSet delegate
The underlying example set the methods calls are delegated to.

Constructor Detail

ExampleSetAdapter

public ExampleSetAdapter(ExampleSetAdapter exampleSet)
Clone constructor.


ExampleSetAdapter

public ExampleSetAdapter(ExampleSet exampleSet)
Constructs a new ExampleSet that delegates all method calls to the given ExampleSet.

Method Detail

getNumberOfAttributes

public int getNumberOfAttributes()
Description copied from interface: ExampleSet
Returns the number of attributes of the examples in this set.


getAttribute

public Attribute getAttribute(int index)
Description copied from interface: ExampleSet
Returns the Attribute with the given index.


getAttribute

public Attribute getAttribute(java.lang.String name)
Description copied from interface: ExampleSet
Returns the attribute with the given name. This can be a regular attribute or a special attribute.


addAttribute

public void addAttribute(Attribute attribute)
Description copied from interface: ExampleSet
Adds a new attribute.


removeAttribute

public void removeAttribute(Attribute attribute)
Description copied from interface: ExampleSet
Removes an attribute.


replaceAttribute

public Attribute replaceAttribute(Attribute first,
                                  Attribute second)
Description copied from interface: ExampleSet
Replaces the first attribute by the second. The second attribute is returned after replacement.


getSpecialAttribute

public Attribute getSpecialAttribute(java.lang.String name)
Description copied from interface: ExampleSet
Returns the special attribute with the given name or null if no special attribute with this name exists.


setSpecialAttribute

public void setSpecialAttribute(java.lang.String name,
                                Attribute attribute)
Description copied from interface: ExampleSet
Adds a special, i.e. named Attribute to the example set. Special attributes are labels, weights, etc., i.e. all non-regular attributes. If the attribute is already defined, it is replaced. By convention, special attributes are named lowercase. Special attributes are also delivered by ExampleSet.getAttribute(String name).


getSpecialAttributeNames

public java.util.Collection<java.lang.String> getSpecialAttributeNames()
Description copied from interface: ExampleSet
Returns a collection of all keys of special attributes.


getSpecialAttributes

public java.util.Map<java.lang.String,Attribute> getSpecialAttributes()
Description copied from interface: ExampleSet
Returns a map of all special attribute names to the corresponding attributes.


getExampleTable

public ExampleTable getExampleTable()
Description copied from interface: ExampleSet
Returns the underlying example table. Most operators should operate on the example set and manipulate example to change table data instead of using the table directly.


setUserData

public void setUserData(java.lang.String key,
                        java.lang.Object data)
Description copied from interface: ExampleSet
Sets arbitrary user data, e.g. to cache certain performance values etc. Make sure to use a unique prefix for your keys.


getUserData

public java.lang.Object getUserData(java.lang.String key)
Description copied from interface: ExampleSet
Returns the user data set by setUserData()

See Also:
ExampleSet.setUserData(String,Object)


clearUserData

public void clearUserData()
Description copied from interface: ExampleSet
Clears all user data. This method must be called whenever attributes are added or removed or the example set changes in a way that makes a new calculation of such values necessary.


getUserDataKeys

public java.util.Set<java.lang.String> getUserDataKeys()
Description copied from interface: ExampleSet
Returns all askable keys of user data.


remapAllIds

public void remapAllIds()
Description copied from interface: ExampleSet
Remaps all ids. This method should be invoked after Id tagging or example set loading.


getExampleReader

@Deprecated
public ExampleReader getExampleReader()
Deprecated. 

Description copied from interface: ExampleSet
Returns a reader that can be used to iterate over all examples of this set. This method should be used for all scans through the data. It is not guaranteed that asking for an example by using the index in the example table is efficiently implemented. Therefore for-loops for iterations are not an option.


iterator

public java.util.Iterator<Example> iterator()

getExample

public Example getExample(int index)
Description copied from interface: ExampleSet
Returns the i-th example. It is not guaranteed that asking for an example by using the index in the example table is efficiently implemented. Therefore for-loops for iterations are not an option and an ExampleReader should be used.


getSize

@Deprecated
public int getSize()
Deprecated. 

Description copied from interface: ExampleSet
Returns the number of examples in this example set. This number should not be used to create for-loops to iterate through all examples. TODO: remove


size

public int size()
Description copied from interface: ExampleSet
Returns the number of examples in this example set. This number should not be used to create for-loops to iterate through all examples.


getExampleFromId

public Example getExampleFromId(double id)
Description copied from interface: ExampleSet
Returns the example with the given id value. If the example set does not contain an id attribute this method should return null.



Copyright © 2001-2006