edu.udo.cs.yale.operator.preprocessing.normalization
Class ZTransformationModel

java.lang.Object
  extended by edu.udo.cs.yale.operator.AbstractIOObject
      extended by edu.udo.cs.yale.operator.ResultObjectAdapter
          extended by edu.udo.cs.yale.operator.AbstractModel
              extended by edu.udo.cs.yale.operator.IOModel
                  extended by edu.udo.cs.yale.operator.preprocessing.normalization.ZTransformationModel
All Implemented Interfaces:
IOObject, Model, ResultObject, Saveable

public class ZTransformationModel
extends IOModel

This model performs a z-Transformation on the given example set.

Version:
$Id: ZTransformationModel.java,v 1.3 2006/09/30 00:05:31 ingomierswa Exp $
Author:
Ingo Mierswa

Nested Class Summary
private  class ZTransformationModel.MeanVariance
          This helper class stores the information about the mean and variance for an attribute.
 
Field Summary
private  java.util.Map<java.lang.String,ZTransformationModel.MeanVariance> meanVarianceMap
          This map contains all information about the mean and variance values for all attributes.
 
Constructor Summary
ZTransformationModel()
          Creates a new model.
 
Method Summary
 void addMeanVariance(java.lang.String name, double mean, double variance)
          Adds the mean and variance information for an attribute with the given name.
 void apply(ExampleSet exampleSet)
          Performs the transformation.
 java.lang.String getName()
          Returns a nicer name.
 void readData(java.io.ObjectInputStream in)
          Reads the model data from the given stream.
 java.lang.String toString()
          Returns a string representation of this model.
 void writeData(java.io.ObjectOutputStream out)
          Writes the model data into the given stream.
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractModel
equals, getExtension, getFileDescription, readModel, readModel, save, setParameter, writeModel, writeModel
 
Methods inherited from class edu.udo.cs.yale.operator.ResultObjectAdapter
addAction, getActions, getVisualisationComponent, toHTML, toResultString
 
Methods inherited from class edu.udo.cs.yale.operator.AbstractIOObject
copy, read, read, read, write, write
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface edu.udo.cs.yale.operator.ResultObject
getActions, getVisualisationComponent, toResultString
 
Methods inherited from interface edu.udo.cs.yale.operator.IOObject
copy, write, write
 

Field Detail

meanVarianceMap

private java.util.Map<java.lang.String,ZTransformationModel.MeanVariance> meanVarianceMap
This map contains all information about the mean and variance values for all attributes. Maps attribute names to MeanVariance objects.

Constructor Detail

ZTransformationModel

public ZTransformationModel()
Creates a new model. Necessary for construction via reflection.

Method Detail

addMeanVariance

public void addMeanVariance(java.lang.String name,
                            double mean,
                            double variance)
Adds the mean and variance information for an attribute with the given name.


apply

public void apply(ExampleSet exampleSet)
           throws OperatorException
Performs the transformation.

Throws:
OperatorException


writeData

public void writeData(java.io.ObjectOutputStream out)
               throws java.io.IOException
Writes the model data into the given stream.

Specified by:
writeData in class AbstractModel
Throws:
java.io.IOException


readData

public void readData(java.io.ObjectInputStream in)
              throws java.io.IOException
Reads the model data from the given stream.

Specified by:
readData in class IOModel
Throws:
java.io.IOException


getName

public java.lang.String getName()
Returns a nicer name. Necessary since this model is defined as inner class.

Specified by:
getName in interface ResultObject
Overrides:
getName in class ResultObjectAdapter


toString

public java.lang.String toString()
Returns a string representation of this model.

Overrides:
toString in class java.lang.Object



Copyright © 2001-2006