|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ExampleTable
This class is the core data supplier for example sets. Several example sets
can use the same data and access the attribute values by reference. Thats means
that ExampleTable contains all data like in a database management systems and
all ExampleSet
s are only views on the data. The ExampleSets themself
do hence not contain any data rows and can be cloned without copying the data.
Changing the data in the ExampleTable will change the data for all views (ExampleSets).
On the other hand, the changes for one view (ExampleSet) like adding or removing Attribute
s
will not change the ExampleTable and will also not change other views (ExampleSets).
Method Summary | |
---|---|
int |
addAttribute(Attribute a)
Adds the attribute to the list of attributes assigning it a free column index. |
void |
addAttributes(java.util.Collection<Attribute> newAttributes)
Adds all Attribute s in newAttributes to the end
of the list of attributes, creating new data columns if necessary. |
ExampleSet |
createCompleteExampleSet(Attribute label,
Attribute predictedLabel,
Attribute weight,
Attribute idAttribute)
Returns a new example set with all attributes switched on. |
ExampleSet |
createCompleteExampleSet(java.util.Map<java.lang.String,Attribute> specialAttributes)
Returns a new example set with all attributes switched on. |
ExampleSet |
createExampleSet(AttributeSet attributeSet)
Returns a new example set with all attributes of the given attribute set. |
Attribute |
findAttribute(java.lang.String name)
Returns the attribute with the given name. |
Attribute |
getAttribute(Attribute attribute)
Returns an Attribute which is constructed in the same way as attribute . |
Attribute |
getAttribute(int i)
Returns the attribute of the column number i. |
int |
getAttributeCount()
Returns the number of non null attributes. |
Attribute[] |
getAttributes()
Returns a new array containing all Attribute s. |
int |
getBlockEndIndex(int startindex)
Returns the last attribute index belonging to the block starting at startindex. |
DataRowReader |
getDataReader()
Returns an Iterator for example data given as DataRow
objects. |
DataRow |
getDataRow(int index)
Returns the i-th data row. |
int |
getHighestBlockNr()
Gets the currently highest used block number. |
int |
getNextFreeBlockNr()
Returns a new unused blockNr. |
int |
getNumberOfAttributes()
Returns the number of attributes. |
int |
getSize()
Returns the number of examples. |
void |
removeAttribute(Attribute attribute)
Equivalent to calling removeAttribute(attribute.getTableIndex()) . |
void |
removeAttribute(int index)
Sets the attribute with the given index to null. |
java.lang.String |
toDataString()
|
java.lang.String |
toString()
|
Method Detail |
---|
int getSize()
DataRowReader getDataReader()
DataRow
objects. This should be used in all cases where iteration is desired.
Since getDataRow(int)
does not ensure to work in an efficient
way the usage of this method is preferred (instead using for-loops).
DataRow getDataRow(int index)
Attribute[] getAttributes()
Attribute
s.
Attribute getAttribute(int i)
Attribute findAttribute(java.lang.String name) throws OperatorException
OperatorException
void addAttributes(java.util.Collection<Attribute> newAttributes)
Attribute
s in newAttributes
to the end
of the list of attributes, creating new data columns if necessary.
int addAttribute(Attribute a)
void removeAttribute(Attribute attribute)
removeAttribute(attribute.getTableIndex())
.
void removeAttribute(int index)
int getNumberOfAttributes()
Attribute
s by calling
AbstractExampleTable.getAttribute(int)
must keep in mind, that some of
these attributes may be null.
int getAttributeCount()
getNumberOfAttributes().
int getHighestBlockNr()
int getNextFreeBlockNr()
int getBlockEndIndex(int startindex)
Attribute getAttribute(Attribute attribute)
attribute
. Attention:
ExampleSet createExampleSet(AttributeSet attributeSet)
ExampleSet createCompleteExampleSet(Attribute label, Attribute predictedLabel, Attribute weight, Attribute idAttribute)
ExampleSet createCompleteExampleSet(java.util.Map<java.lang.String,Attribute> specialAttributes)
java.lang.String toString()
toString
in class java.lang.Object
java.lang.String toDataString()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |