|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.yale.example.AbstractAttribute
edu.udo.cs.yale.example.NominalAttribute
public class NominalAttribute
This class holds all information on a single nominal attribute. In addition to the generic attribute fields this class keeps information about the nominal values and the value to index mappings. If one of the methods designed for numerical attributes was invoked a RuntimeException will be thrown. It will be guaranteed that all values are mapped to indices without any missing values.
Field Summary | |
---|---|
private int[] |
indexToCounterMap
A map between symbolic values and a counter how often the value occurs in the data. |
private java.util.List<java.lang.String> |
indexToSymbolMap
The map between indices of nominal values and the actual nominal value. |
private static int |
MAX_NUMBER_OF_SHOWN_NOMINAL_VALUES
The maximum number of nominal values displayed in result strings. |
private java.lang.String |
mode
The mode value for this attribute. |
private java.util.Map<java.lang.String,java.lang.Integer> |
symbolToIndexMap
The map between symbolic values and their indices. |
Fields inherited from class edu.udo.cs.yale.example.AbstractAttribute |
---|
HIGHEST_BLOCK_NUMBER |
Fields inherited from interface edu.udo.cs.yale.example.Attribute |
---|
UNDEFINED_ATTRIBUTE_INDEX, UNDEFINED_BLOCK_NUMBER, UNIT_NAMES |
Constructor Summary | |
---|---|
protected |
NominalAttribute(java.lang.String name)
Creates a simple attribute which is not part of a series and does not provide a unit string. |
protected |
NominalAttribute(java.lang.String name,
int valueType)
Creates a simple attribute which is not part of a series and does not provide a unit string. |
Method Summary | |
---|---|
void |
clearMaps()
Clears all mappings for nominal values. |
java.lang.Object |
clone()
Clones this attribute. |
void |
copyProperties(Attribute attribute)
Copies all properties from the given attribute. |
private void |
ensureClassification()
Throws a runtime exception if this attribute is not a classification attribute. |
java.lang.String |
getAsString(double value,
int digits)
Returns a string representation and maps value to a string if type is nominal. |
double |
getAverage()
Not supported for nominal attributes. |
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()
Not supported for nominal attributes. |
double |
getMinimum()
Not supported for nominal attributes. |
java.lang.String |
getMode()
Returns the mode for this 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 nominal values. |
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 range (numerical attribute) or class values (nominal 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. |
double |
getVariance()
Not supported for nominal attributes. |
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 |
isNominal()
Returns true if this attribute is nominal. |
boolean |
isNumerical()
Returns true if this attribute is nominal. |
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)
Overrides the super method and reads information about the nominal values. |
void |
replaceValue(java.lang.String oldValue,
java.lang.String newValue)
Replaces the old value with the new one. |
void |
setAverage(double a)
Not supported for nominal attributes. |
void |
setIndexToCounterMap(int[] indexToCounterMap)
Sets the index to counter map, e.g. after recalculating the attribute statistics. |
void |
setMaximum(double v)
Not supported for nominal attributes. |
void |
setMinimum(double v)
Not supported for nominal attributes. |
void |
setMode(java.lang.String mode)
Sets the mode for this attribute. |
void |
setVariance(double v)
Not supported for nominal attributes. |
void |
sortNominalMappings()
This method rearranges the string to number mappings such that they are in alphabetical order. |
private void |
throwNonNumericalException(java.lang.String message)
Throws a runtime exception. |
java.lang.String |
toString()
Returns a human readable string that describes this attribute. |
void |
writeAttributeData(java.io.DataOutput out)
Overrides the super method and add information about the nominal values. |
Methods inherited from class edu.udo.cs.yale.example.AbstractAttribute |
---|
clearConstructionDescription, compatible, compatibleUnit, divideUnits, equalConstructionDescription, equals, getArguments, getBlockNumber, getBlockType, getConstructionDepth, getConstructionDescription, getConstructionDescription, getFunctionName, getName, getTableIndex, getUnit, getUnknownCounter, getValueType, isBlockStart, isGenerated, isInterval, isSeries, multiplyUnits, parseUnits, setArguments, setBlockNumber, setBlockType, setFunctionName, setName, setTableIndex, setUnit, setUnits, setUnknownCounter, unitToString |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private static final int MAX_NUMBER_OF_SHOWN_NOMINAL_VALUES
private java.lang.String mode
private java.util.Map<java.lang.String,java.lang.Integer> symbolToIndexMap
private java.util.List<java.lang.String> indexToSymbolMap
private int[] indexToCounterMap
Constructor Detail |
---|
protected NominalAttribute(java.lang.String name)
protected NominalAttribute(java.lang.String name, int valueType)
Method Detail |
---|
public java.lang.Object clone()
clone
in interface Attribute
clone
in class AbstractAttribute
public void copyProperties(Attribute attribute)
copyProperties
in interface Attribute
copyProperties
in class AbstractAttribute
public void writeAttributeData(java.io.DataOutput out) throws java.io.IOException
writeAttributeData
in interface Attribute
writeAttributeData
in class AbstractAttribute
java.io.IOException
public void readAttributeData(java.io.DataInput in) throws java.io.IOException
readAttributeData
in interface Attribute
readAttributeData
in class AbstractAttribute
java.io.IOException
public void setMode(java.lang.String mode)
public java.lang.String getMode()
public double getAverage()
public void setAverage(double a)
public double getVariance()
public void setVariance(double v)
public double getMaximum()
public void setMaximum(double v)
public double getMinimum()
public void setMinimum(double v)
public boolean isNominal()
public boolean isNumerical()
public boolean isBooleanClassification()
public void clearMaps()
public int mapString(java.lang.String str)
str
. If
the string is unknown, a new index value is assigned. Returns -1, if str
is null.
public int getIndex(java.lang.String str)
mapIndex(int)
.
public java.lang.String mapIndex(int index)
getValues()
.
public void replaceValue(java.lang.String oldValue, java.lang.String newValue)
public int getValueCount(java.lang.String value)
public void setIndexToCounterMap(int[] indexToCounterMap)
public java.lang.String getAsString(double value, int digits)
public int getNegativeIndex()
public int getPositiveIndex()
public java.util.Collection<java.lang.String> getValues()
public int getNumberOfValues()
public boolean isDefault(double value)
public void sortNominalMappings()
AbstractExampleTable
and it already
contains Example
s. All examples will be messed up!
public java.lang.String toString()
AbstractAttribute
toString
in interface Attribute
toString
in class AbstractAttribute
public java.lang.String getStatisticsString()
private void throwNonNumericalException(java.lang.String message)
private void ensureClassification()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |