|
|||||||||
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.NumericalAttribute
public class NumericalAttribute
This class holds all information on a single numerical attribute. In addition to the information of the superclass this is some statistics data like minimum, maximum and average of the values. If one of the methods designed for nominal attributes is invoked a RuntimeException will be thrown.
Field Summary | |
---|---|
private double |
average
Average of all attribute values. |
private double |
maximum
Maximum of all attribute values. |
private double |
minimum
Minimum of all attribute values. |
private double |
variance
Variance of all attribute values. |
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 |
NumericalAttribute(java.lang.String name)
Creates a simple attribute which is not part of a series and does not provide a unit string. |
protected |
NumericalAttribute(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()
Not supported by numerical attributes. |
java.lang.Object |
clone()
Clones this attribute. |
void |
copyProperties(Attribute attribute)
Copies all properties from the given attribute. |
java.lang.String |
getAsString(double value,
int numberOfDigits)
Returns a string representation of value. |
double |
getAverage()
Returns the average value of all attribute values in the example table. |
int |
getIndex(java.lang.String str)
Not supported by numerical attributes. |
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()
Not supported by numerical attributes. |
int |
getNegativeIndex()
Not supported by numerical attributes. |
int |
getNumberOfValues()
Not supported by numerical attributes. |
int |
getPositiveIndex()
Not supported by numerical attributes. |
java.lang.String |
getStatisticsString()
Returns a string representation of the range (numerical attribute) or class values (nominal attribute). |
int |
getValueCount(java.lang.String value)
Not supported by numerical attributes. |
java.util.Collection<java.lang.String> |
getValues()
Not supported by numerical attributes. |
double |
getVariance()
Returns the variance of all attribute values in the example table. |
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)
Not supported by numerical attributes. |
int |
mapString(java.lang.String str)
Not supported by numerical attributes. |
void |
replaceValue(java.lang.String oldValue,
java.lang.String newValue)
Not supported by numerical attributes. |
void |
setAverage(double a)
Sets the average value of all attribute values in the example table. |
void |
setIndexToCounterMap(int[] indexToCounterMap)
Not supported by numerical attributes. |
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)
Not supported by numerical attributes. |
void |
setVariance(double v)
Sets the variance of all attribute values in the example table. |
void |
sortNominalMappings()
Not supported by numerical attributes. |
private void |
throwNonNominalException(java.lang.String message)
Throws a runtime exception if this attribute is not nominal. |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
private double maximum
private double minimum
private double average
private double variance
Constructor Detail |
---|
protected NumericalAttribute(java.lang.String name)
protected NumericalAttribute(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 double getAverage()
public void setAverage(double a)
public double getVariance()
public void setVariance(double v)
public double getMaximum()
public void setMaximum(double m)
public double getMinimum()
public void setMinimum(double m)
public boolean isNominal()
public boolean isNumerical()
public boolean isBooleanClassification()
public boolean isDefault(double value)
public void setMode(java.lang.String mode)
public java.lang.String getMode()
public void clearMaps()
public int mapString(java.lang.String str)
public int getIndex(java.lang.String str)
public java.lang.String mapIndex(int index)
public void replaceValue(java.lang.String oldValue, java.lang.String newValue)
public int getValueCount(java.lang.String value)
public void setIndexToCounterMap(int[] indexToCounterMap)
public int getNegativeIndex()
public int getPositiveIndex()
public java.util.Collection<java.lang.String> getValues()
public int getNumberOfValues()
public void sortNominalMappings()
public java.lang.String getAsString(double value, int numberOfDigits)
public java.lang.String getStatisticsString()
private void throwNonNominalException(java.lang.String message)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |