|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.dmt.odm.MiningObject | +--oracle.dmt.odm.LocatableObject | +--oracle.dmt.odm.result.MiningResult | +--oracle.dmt.odm.result.MiningLiftResult
An instance of MiningLiftResult
contains the result of a lift computation
for a classification model.
It contains lift elements, each of which represents the lift result
for specific quantile of data.
Method Summary |
Type | Method |
---|---|
LiftResultElement[] |
getLiftResultElements()
Returns an array of lift result elements of mining lift result. |
java.lang.String |
getTableName()
Returns the name of the lift table. |
static java.lang.String[] |
listContents(Connection dmsConn)
Lists the names of the MiningLiftResult objects stored in the DMS. |
static java.lang.String[] |
listContents(Connection dmsConn,
java.util.Date startTime,
java.util.Date endTime)
Lists the names of the MiningLiftResult objects stored in the DMS
created between the specified start and end times. |
static java.lang.String[] |
listContents(Connection dmsConn,
java.util.Date startTime,
java.util.Date endTime,
java.lang.String modelName)
Lists the names of the MiningLiftResult objects stored in the DMS
derived from the speicfied model, and created between the specified start and
end times. |
static void |
remove(Connection dmsConn,
java.lang.String resultName)
Removes the lift result object with the specified resultName from the DMS. |
static MiningLiftResult |
restore(Connection dmsConn,
java.lang.String resultName)
Restores the MiningLiftResult object with the
specified resultName from the DMS. |
java.lang.String |
toString()
Returns a formatted string representation of the lift result. |
Methods inherited from class oracle.dmt.odm.result.MiningResult |
getCompletionTimestamp, getDurationTime, getExecutionDuration, getInputMiningData, getMiningModel, getName, getStartingTimestamp |
Methods inherited from class oracle.dmt.odm.LocatableObject |
deserialize, serialize |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Method Detail |
public LiftResultElement[] getLiftResultElements()
LiftResultElement[]
- An array of lift result elementspublic java.lang.String getTableName()
public static void remove(Connection dmsConn, java.lang.String resultName) throws InvalidArgumentException, MiningObjectException, java.sql.SQLException, ODMException
resultName
from the DMS.InvalidArgumentException
- when dmsConn
or resultName
is null.ODMException
- when resultname
is empty or exceeds
64 characters in length.MiningObjectException
- when there is no lift result object
with the specified name in the DMS.java.sql.SQLException
- when there is a failure in JDBC calls.public static MiningLiftResult restore(Connection dmsConn, java.lang.String resultName) throws InvalidArgumentException, java.sql.SQLException, ODMException
MiningLiftResult
object with the
specified resultName
from the DMS.InvalidArgumentException
- when dmsConn
or resultName
is null.ODMException
- when resultName
is empty or exceeds
64 characters in length.java.sql.SQLException
- when there is a failure in JDBC calls.public static java.lang.String[] listContents(Connection dmsConn)
MiningLiftResult
objects stored in the DMS.dmsConn
- A connection to the DMSString[]
- An array of lift result namespublic static java.lang.String[] listContents(Connection dmsConn, java.util.Date startTime, java.util.Date endTime)
MiningLiftResult
objects stored in the DMS
created between the specified start and end times.dmsConn
- A connection to the DMSstartTime
- The starting time of the lift computation in the DMSendTime
- The ending time of the lift computation in the DMSString[]
- An array of lift result namespublic static java.lang.String[] listContents(Connection dmsConn, java.util.Date startTime, java.util.Date endTime, java.lang.String modelName)
MiningLiftResult
objects stored in the DMS
derived from the speicfied model, and created between the specified start and
end times.dmsConn
- A connection to the DMSstartTime
- The starting time of the lift computation in the DMSendTime
- The ending time of the lift computation in the DMSmodelName
- The name of the model used to derive the lift resultsString[]
- An array of lift result namespublic java.lang.String toString()
toString
in class java.lang.Object
String
- A string representation of the lift result
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |