|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.operator.AbstractIOObject
edu.udo.cs.yale.operator.ResultObjectAdapter
edu.udo.cs.yale.example.AbstractExampleSet
edu.udo.cs.yale.example.SimpleExampleSet
public class SimpleExampleSet
A simple implementation of ExampleSet containing a list of attributes and a special attribute map. The data is queried from an example table which contains the data (example sets actually are only views on this table and does not keep any data). This simple example set implementation usually is the basic example set of the multi-layered data view.
Field Summary | |
---|---|
private java.util.ArrayList<Attribute> |
attributes
The list of attributes contained in this example set. |
private ExampleTable |
exampleTable
The table used for reading the examples from. |
private java.util.Map<java.lang.Double,java.lang.Integer> |
idMap
Maps the id values on the line index in the example table. |
private java.util.Map<java.lang.String,Attribute> |
specialAttributeMap
Maps names of named special attributes to Attribute s |
private java.util.Map<java.lang.String,java.lang.Object> |
userDataMap
A map to store user data in. |
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 | |
---|---|
SimpleExampleSet(AbstractExampleTable exampleTable,
Attribute label,
Attribute predictedLabel,
Attribute weight,
Attribute idAttribute)
Constructs a new SimpleExampleSet backed by the given example table. |
|
SimpleExampleSet(AbstractExampleTable exampleTable,
java.util.Map<java.lang.String,Attribute> specialAttributes)
Constructs a new SimpleExampleSet backed by the given example table. |
|
SimpleExampleSet(ExampleTable exampleTable,
java.util.Collection<Attribute> regularAttributes)
Constructs a new SimpleExampleSet backed by the given example table. |
|
SimpleExampleSet(SimpleExampleSet exampleSet)
Clone constructor. |
Method Summary | |
---|---|
private void |
addAllAttributesWithoutCheck(java.util.Collection<Attribute> c)
Adds all given attributes to this example set. |
void |
addAttribute(Attribute attribute)
Adds a new attribute. |
private void |
addRegularAttributesFromExampleTable(AbstractExampleTable exampleTable)
Adds all attributes from the given example table as regular attributes if they are not already known as special attributes. |
void |
clearUserData()
Clears all user data. |
private Example |
createExample(DataRow dataRow)
Creates an example for the given data row. |
Attribute |
getAttribute(int index)
Returns the attribute with the given index. |
Attribute |
getAttribute(java.lang.String name)
Returns the attribute with the given name. |
private DataRow |
getDataRowFromId(double id)
This method can be used by subclasses to determine the data row with a given id value. |
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 regular attributes. |
int |
getSize()
Deprecated. |
Attribute |
getSpecialAttribute(java.lang.String name)
Returns the special attribute with the given name. |
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. |
boolean |
isSpecialAttribute(Attribute attribute)
Returns true if one of the special attributes has the same index like the given one. |
java.util.Iterator<Example> |
iterator()
|
void |
remapAllIds()
Remaps all ids. |
void |
removeAttribute(Attribute attribute)
Removes the attribute from the attribute list which has the same column index like the given one. |
Attribute |
replaceAttribute(Attribute first,
Attribute second)
Replaces the first attribute by the second. |
void |
setSpecialAttribute(java.lang.String name,
Attribute attribute)
Sets the given special attribute or deletes it if the attribute is null. |
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.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 |
---|
private java.util.ArrayList<Attribute> attributes
private java.util.Map<java.lang.String,java.lang.Object> userDataMap
private java.util.Map<java.lang.String,Attribute> specialAttributeMap
Attribute
s
private java.util.Map<java.lang.Double,java.lang.Integer> idMap
private ExampleTable exampleTable
Constructor Detail |
---|
public SimpleExampleSet(SimpleExampleSet exampleSet)
public SimpleExampleSet(ExampleTable exampleTable, java.util.Collection<Attribute> regularAttributes)
public SimpleExampleSet(AbstractExampleTable exampleTable, Attribute label, Attribute predictedLabel, Attribute weight, Attribute idAttribute)
public SimpleExampleSet(AbstractExampleTable exampleTable, java.util.Map<java.lang.String,Attribute> specialAttributes)
Method Detail |
---|
private void addRegularAttributesFromExampleTable(AbstractExampleTable exampleTable)
private void addAllAttributesWithoutCheck(java.util.Collection<Attribute> c)
public boolean isSpecialAttribute(Attribute attribute)
public void addAttribute(Attribute attribute)
ExampleSet
public void removeAttribute(Attribute attribute)
public Attribute replaceAttribute(Attribute first, Attribute second)
@Deprecated public ExampleReader getExampleReader()
ExampleSet
public java.util.Iterator<Example> iterator()
public ExampleTable getExampleTable()
ExampleSet
public int getNumberOfAttributes()
public Attribute getAttribute(int index)
public Attribute getAttribute(java.lang.String name)
public Attribute getSpecialAttribute(java.lang.String name)
public void setSpecialAttribute(java.lang.String name, Attribute attribute)
public java.util.Collection<java.lang.String> getSpecialAttributeNames()
ExampleSet
public java.util.Map<java.lang.String,Attribute> getSpecialAttributes()
ExampleSet
@Deprecated public int getSize()
ExampleSet
public int size()
ExampleSet
public Example getExample(int index)
ExampleSet
ExampleReader
should be used.
public Example getExampleFromId(double id)
ExampleSet
private Example createExample(DataRow dataRow)
private DataRow getDataRowFromId(double id)
public void remapAllIds()
public void clearUserData()
ExampleSet
public void setUserData(java.lang.String key, java.lang.Object data)
ExampleSet
public java.lang.Object getUserData(java.lang.String key)
ExampleSet
ExampleSet.setUserData(String,Object)
public java.util.Set<java.lang.String> getUserDataKeys()
ExampleSet
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |