Oracle Data Mining Java API Reference
10g Release 1 (10.1)

B12276-01

oracle.dmt.odm.model
Class AttributeImportanceEntry

java.lang.Object
  |
  +--oracle.dmt.odm.model.AttributeImportanceEntry

public class AttributeImportanceEntry
extends java.lang.Object

An instance of AttributeImortanceEntry class represents an attribute with its importance found by running an attribute importance algorithm.

Each attribute importance entry consists of


Constructor Summary
AttributeImportanceEntry(java.lang.String name, float importance, int rank)
          Internal use only.

 

Method Summary
 java.lang.String getAttributeName()
          Returns the name of the attribute.
 float getImportanceValue()
          Returns the importance value of the attribute.
 int getRank()
          Returns the rank of the attribute.
 java.lang.String toString()
          Returns a formatted string representation of the entry.

 

Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait

 

Constructor Detail

AttributeImportanceEntry

public AttributeImportanceEntry(java.lang.String name,
                                float importance,
                                int rank)
Internal use only.
Creates an instance of AttributeImportanceEntry, given the attribute name, importance value, and rank.
Parameters:
name - The name of the attribute
importance - The importance value of the attribute
rank - The rank of the attribute when attributes are ordered in descending order of importance
Method Detail

getAttributeName

public java.lang.String getAttributeName()
Returns the name of the attribute.
Returns:
The name of the attribute

getImportanceValue

public float getImportanceValue()
Returns the importance value of the attribute.
Returns:
The importance value of the attribute

getRank

public int getRank()
Returns the rank of the attribute.
Returns:
The rank of the attribute

toString

public java.lang.String toString()
Returns a formatted string representation of the entry.
Overrides:
toString in class java.lang.Object
Returns:
The formatted string representation of the entry.

Copyright © 2003 Oracle Corporation. All Rights Reserved.