|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface Attribute
This class holds all information on a single attribute.
AbstractExampleTable
and
DataRow
Ontology.ATTRIBUTE_VALUE_TYPE
,
Ontology.ATTRIBUTE_BLOCK_TYPE
Field Summary | |
---|---|
static int |
UNDEFINED_ATTRIBUTE_INDEX
Used to identify that this attribute is not part of any example table. |
static int |
UNDEFINED_BLOCK_NUMBER
Indicates a block number which has not been set properly (for value series) or which need not to be used (single values). |
static java.lang.String[] |
UNIT_NAMES
Names for SI-Units. |
Method Summary | |
---|---|
void |
clearConstructionDescription()
Clears the construction description. |
void |
clearMaps()
Clears all mappings for nominal values. |
java.lang.Object |
clone()
Clones this attribute. |
boolean |
compatible(Attribute a)
Returns true if value and block types of this attribute are subtypes of value and block type of a. |
boolean |
compatibleUnit(Attribute a)
Returns true if the units are equal. |
void |
copyProperties(Attribute attribute)
Copies all properties from the given attribute. |
boolean |
equalConstructionDescription(Attribute o)
Returns true if the attribute was constructed the same way a was constructed. |
boolean |
equals(java.lang.Object o)
Returns true if the given object is an attribute with the same name and table index. |
Attribute[] |
getArguments()
Returns the arguments that were used to generate this attribute. |
java.lang.String |
getAsString(double value,
int numberOfDigits)
Returns a string representation of value if type is numerical or maps the value to a string if type is nominal. |
double |
getAverage()
Returns the average value of all attribute values in the example table. |
int |
getBlockNumber()
Get the value of blockNumber. |
int |
getBlockType()
Returns the block type of this attribute. |
int |
getConstructionDepth()
Returns the depth of the syntax tree of the construction description. |
java.lang.String |
getConstructionDescription()
Returns a string that describes how this attribute was generated from other attributes (infix). |
java.lang.String |
getConstructionDescription(boolean useInfix)
Returns a string that describes how this attribute was generated from other attributes. |
java.lang.String |
getFunctionName()
Returns the name of the function that generated this attribute. |
int |
getIndex(java.lang.String str)
Returns the index of the given nominal value or -1 if this value was not mapped before by invoking the method mapIndex(int) . |
double |
getMaximum()
Returns the maximum value of all attribute values in the example table. |
double |
getMinimum()
Returns the minimum value of all attribute values in the example table. |
java.lang.String |
getMode()
Returns the mode of all attribute values in the example table. |
java.lang.String |
getName()
Returns the name of the attribute. |
int |
getNegativeIndex()
Returns the index of the first value if this attribute is a classification attribute, i.e. if it is binominal. |
int |
getNumberOfValues()
Returns the number of different values in case of a nominal attribute. |
int |
getPositiveIndex()
Returns the index of the second value if this attribute is a classification attribute. |
java.lang.String |
getStatisticsString()
Returns a string representation of the attribute statistics, i.e. the mean and range for numerical attributes or the mode and class values for nominal attributes. |
int |
getTableIndex()
Returns the index of the column in the example table. |
int |
getUnit(int index)
Returns the exponent of the unit. |
int |
getUnknownCounter()
Returns the number of undefined values for this attribute. |
int |
getValueCount(java.lang.String value)
Returns the number of occurences of the given nominal value. |
java.util.Collection<java.lang.String> |
getValues()
Returns the values of the attribute as an enumeration of strings. |
int |
getValueType()
Returns the value type of this attribute. |
double |
getVariance()
Returns the variance of all attribute values in the example table. |
boolean |
isBlockStart()
Returns true if this attribute is the start attribute of its block. |
boolean |
isBooleanClassification()
Returns true if this attribute is nominal attribute with two different class values. |
boolean |
isDefault(double value)
Returns true iff value is the default value for this attribute. |
boolean |
isGenerated()
Returns true iff this attribute was generated. |
boolean |
isInterval()
Returns true if block type is a value series. |
boolean |
isNominal()
Returns true if this attribute is nominal. |
boolean |
isNumerical()
Returns true if this attribute is nominal. |
boolean |
isSeries()
Returns true if block type is a value series. |
java.lang.String |
mapIndex(int index)
Returns the attribute value, that is associated with this index. |
int |
mapString(java.lang.String str)
Returns the index for the nominal attribute value str . |
void |
readAttributeData(java.io.DataInput in)
Reads the attribute data from the given input stream. |
void |
replaceValue(java.lang.String oldValue,
java.lang.String newValue)
Replaces the old value with the new one. |
void |
setArguments(Attribute[] arguments)
Sets the arguments that were used to generate this attribute. |
void |
setAverage(double a)
Sets the average value of all attribute values in the example table. |
void |
setBlockNumber(int blockNumber)
Sets the block number. |
void |
setBlockType(int b)
Sets the block type of this attribute. |
void |
setFunctionName(java.lang.String functionName)
Sets the name of the function that generated this attribute. |
void |
setIndexToCounterMap(int[] indexToCounterMap)
Sets the index to counter map, e.g. after recalculating the attribute statistics. |
void |
setMaximum(double m)
Sets the maximum value of all attribute values in the example table. |
void |
setMinimum(double m)
Sets the minimum value of all attribute values in the example table. |
void |
setMode(java.lang.String mode)
Sets the average value of all attribute values in the example table. |
void |
setName(java.lang.String name)
Sets the name of the attribtue. |
void |
setTableIndex(int i)
Sets the index in the example table. |
void |
setUnit(int index,
int exponent)
Sets the unit to given exponent. |
void |
setUnits(java.lang.String unitString)
Reads the units from a string as generated by unitToString. |
void |
setUnknownCounter(int unknownCounter)
Defines the number of undefined values for this attribute. |
void |
setVariance(double v)
Sets the variance of all attribute values in the example table. |
void |
sortNominalMappings()
This method rearranges the string to number mappings such that they are in alphabetical order. |
java.lang.String |
toString()
Returns a human readable string that describes this attribute. |
java.lang.String |
unitToString()
Returns a string representation of the units. |
void |
writeAttributeData(java.io.DataOutput out)
Writes the (non transient) attribute data to an output stream. |
Field Detail |
---|
static final java.lang.String[] UNIT_NAMES
static final int UNDEFINED_ATTRIBUTE_INDEX
static final int UNDEFINED_BLOCK_NUMBER
Method Detail |
---|
java.lang.String getName()
void setName(java.lang.String name)
int getTableIndex()
void setTableIndex(int i)
void setFunctionName(java.lang.String functionName)
java.lang.String getFunctionName()
void setArguments(Attribute[] arguments)
Attribute[] getArguments()
java.lang.Object clone()
void copyProperties(Attribute attribute)
double getAverage()
void setAverage(double a)
java.lang.String getMode()
void setMode(java.lang.String mode)
double getVariance()
void setVariance(double v)
double getMaximum()
void setMaximum(double m)
double getMinimum()
void setMinimum(double m)
int getUnknownCounter()
void setUnknownCounter(int unknownCounter)
int getBlockType()
Ontology.ATTRIBUTE_BLOCK_TYPE
void setBlockType(int b)
Ontology.ATTRIBUTE_BLOCK_TYPE
int getValueType()
Ontology.ATTRIBUTE_VALUE_TYPE
int getBlockNumber()
void setBlockNumber(int blockNumber)
void clearConstructionDescription()
java.lang.String getConstructionDescription()
java.lang.String getConstructionDescription(boolean useInfix)
useInfix
- Whether or not to use infix notation for binary generatorsint getConstructionDepth()
void setUnit(int index, int exponent)
int getUnit(int index)
boolean equals(java.lang.Object o)
equals
in class java.lang.Object
boolean equalConstructionDescription(Attribute o)
boolean compatible(Attribute a)
boolean compatibleUnit(Attribute a)
boolean isGenerated()
boolean isSeries()
boolean isInterval()
boolean isNominal()
boolean isNumerical()
boolean isBooleanClassification()
boolean isBlockStart()
void clearMaps()
int getIndex(java.lang.String str)
mapIndex(int)
.
int mapString(java.lang.String str)
str
. If
the string is unknown, a new index value is assigned. Returns -1, if str
is null.
java.lang.String mapIndex(int index)
getValues()
.
void replaceValue(java.lang.String oldValue, java.lang.String newValue)
int getValueCount(java.lang.String value)
void setIndexToCounterMap(int[] indexToCounterMap)
java.lang.String getAsString(double value, int numberOfDigits)
int getNegativeIndex()
int getPositiveIndex()
java.util.Collection<java.lang.String> getValues()
int getNumberOfValues()
java.lang.String getStatisticsString()
java.lang.String toString()
toString
in class java.lang.Object
java.lang.String unitToString()
void setUnits(java.lang.String unitString)
boolean isDefault(double value)
void writeAttributeData(java.io.DataOutput out) throws java.io.IOException
java.io.IOException
void readAttributeData(java.io.DataInput in) throws java.io.IOException
java.io.IOException
void sortNominalMappings()
AbstractExampleTable
and it already
contains Example
s. All examples will be messed up!
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |