|
|||||||||
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.tools.math.AverageVector
edu.udo.cs.yale.example.AttributeWeights
public class AttributeWeights
AttributeWeights holds the information about the weights of attributes of an example set. It is delivered by several feature weighting algorithms or learning schemes. The use of a linked hash map ensures that the added features are stored in the same sequence they were added.
Nested Class Summary | |
---|---|
private class |
AttributeWeights.WeightComparator
This comparator sorts the names of attributes according to their weights. |
Field Summary | |
---|---|
static int |
ABSOLUTE_WEIGHTS
Indicates that the the absolute weights should be used for sorting. |
static int |
DECREASING
Indicates that the weights should be sorted in descending order. |
static int |
INCREASING
Indicates that the weights should be sorted in ascending order. |
static int |
NO_SORTING
Indicates that the weights should not be sorted at all. |
static int |
ORIGINAL_WEIGHTS
Indicates that the the actual weights should be used for sorting. |
private static java.lang.String[] |
SORTING_ORDER_NAMES
The names for the sorting orders. |
private static java.lang.String[] |
SORTING_TYPE_NAMES
The names for the sorting value type. |
private int |
sortType
Indicates the type of sorting. |
private java.util.Map<java.lang.String,AttributeWeight> |
weightMap
Maps the name of an attribute to the corresponding attribute weight. |
private int |
weightType
Indicates if absolute or actualy weights should be used for sorting. |
Constructor Summary | |
---|---|
|
AttributeWeights()
Creates a new empty attribute weights object. |
private |
AttributeWeights(AttributeWeights weights)
Clone constructor. |
|
AttributeWeights(ExampleSet exampleSet)
Creates a new attribute weights object containing a weight of 1 for each of the given input attributes. |
Method Summary | |
---|---|
java.lang.Object |
clone()
Returns a deep clone of the attribute weights which provides the same sequence of attribute names. |
int |
compareTo(java.lang.Object o)
Since this average vector cannot be compared this method always returns 0. |
private DataTable |
createSortedDataTable()
|
java.util.Set<java.lang.String> |
getAttributeNames()
Returns an set of attribute names in this map ordered by their insertion time. |
java.lang.String |
getExtension()
Returns the default extension in file choosers. |
java.lang.String |
getFileDescription()
Returns the file description used in file choosers. |
java.lang.String |
getName()
Returns the name of this AverageVector. |
private java.util.Iterator<AttributeWeight> |
getSortedWeights()
Returns an iterator over all AttributeWeight objects according to the current sorting settings. |
int |
getSortingType()
Returns the currently used sorting type. |
java.awt.Component |
getVisualisationComponent(IOContainer container)
Returns a visualisation component which allows sorting of the attribute weights and several weight plots. |
double |
getWeight(java.lang.String name)
Returns the weight for the attribute with the given name. |
int |
getWeightType()
Returns the currently used weight type. |
static AttributeWeights |
load(java.io.File file)
Loads a new AttributeWeights object from the given file. |
void |
save(java.io.File file)
Saves the attribute weights into a file. |
void |
setWeight(java.lang.String name,
double weight)
Sets the weight for the attribute with the given name. |
int |
size()
Returns the number of features in this map. |
void |
sortByWeight(java.lang.String[] attributeNames,
int direction,
int value)
Sorts the given array of attribute names according to their weight, the sorting direction (ascending or descending), and with respect to the fact if original or absolute weights should be used. |
java.lang.String |
toString()
Returns a string representation of this object. |
Methods inherited from class edu.udo.cs.yale.tools.math.AverageVector |
---|
addAveragable, buildAverages, getAveragable, getAveragable, getSize, removeAveragable, toHTML, toResultString |
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter |
---|
addAction, getActions, toHTML |
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject |
---|
copy, read, read, read, write, write |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface edu.udo.cs.yale.operator.IOObject |
---|
copy, write, write |
Field Detail |
---|
public static final int NO_SORTING
public static final int DECREASING
public static final int INCREASING
private static final java.lang.String[] SORTING_ORDER_NAMES
public static final int ORIGINAL_WEIGHTS
public static final int ABSOLUTE_WEIGHTS
private static final java.lang.String[] SORTING_TYPE_NAMES
private int sortType
private int weightType
private java.util.Map<java.lang.String,AttributeWeight> weightMap
Constructor Detail |
---|
public AttributeWeights()
public AttributeWeights(ExampleSet exampleSet)
private AttributeWeights(AttributeWeights weights)
Method Detail |
---|
public java.lang.String getName()
getName
in interface ResultObject
getName
in class ResultObjectAdapter
public void setWeight(java.lang.String name, double weight)
public double getWeight(java.lang.String name)
public int getWeightType()
public int getSortingType()
public int size()
size
in class AverageVector
public java.util.Set<java.lang.String> getAttributeNames()
public int compareTo(java.lang.Object o)
compareTo
in interface java.lang.Comparable
public void sortByWeight(java.lang.String[] attributeNames, int direction, int value)
direction
- ASCENDING
or DESCENDING
value
- WEIGHT
or WEIGHT_ABSOLUTE
.public void save(java.io.File file) throws java.io.IOException
save
in interface Saveable
java.io.IOException
public static AttributeWeights load(java.io.File file) throws java.io.IOException
java.io.IOException
public java.lang.String getExtension()
Saveable
getExtension
in interface Saveable
public java.lang.String getFileDescription()
Saveable
getFileDescription
in interface Saveable
public java.lang.String toString()
toString
in class AverageVector
public java.lang.Object clone()
clone
in class AverageVector
public java.awt.Component getVisualisationComponent(IOContainer container)
getVisualisationComponent
in interface ResultObject
getVisualisationComponent
in class AverageVector
private DataTable createSortedDataTable()
private java.util.Iterator<AttributeWeight> getSortedWeights()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |