public class Normalize extends PotentialClassIgnorer implements UnsupervisedFilter, Sourcable, OptionHandler
-unset-class-temporarily Unsets the class index temporarily before the filter is applied to the data. (default: no)
-S <num> The scaling factor for the output range. (default: 1.0)
-T <num> The translation of the output range. (default: 0.0)
Constructor and Description |
---|
Normalize() |
Modifier and Type | Method and Description |
---|---|
boolean |
batchFinished()
Signify that this batch of input to the filter is finished.
|
Capabilities |
getCapabilities()
Returns the Capabilities of this filter.
|
double[] |
getMaxArray()
Returns the calculated maximum values for the attributes in the data.
|
double[] |
getMinArray()
Returns the calculated minimum values for the attributes in the data.
|
java.lang.String[] |
getOptions()
Gets the current settings of the filter.
|
java.lang.String |
getRevision()
Returns the revision string.
|
double |
getScale()
Get the scaling factor.
|
double |
getTranslation()
Get the translation.
|
java.lang.String |
globalInfo()
Returns a string describing this filter.
|
boolean |
input(Instance instance)
Input an instance for filtering.
|
java.util.Enumeration |
listOptions()
Returns an enumeration describing the available options.
|
static void |
main(java.lang.String[] args)
Main method for running this filter.
|
java.lang.String |
scaleTipText()
Returns the tip text for this property.
|
boolean |
setInputFormat(Instances instanceInfo)
Sets the format of the input instances.
|
void |
setOptions(java.lang.String[] options)
Parses a given list of options.
|
void |
setScale(double value)
Sets the scaling factor.
|
void |
setTranslation(double value)
Sets the translation.
|
java.lang.String |
toSource(java.lang.String className,
Instances data)
Returns a string that describes the filter as source.
|
java.lang.String |
translationTipText()
Returns the tip text for this property.
|
getIgnoreClass, getOutputFormat, ignoreClassTipText, setIgnoreClass
batchFilterFile, filterFile, getCapabilities, isFirstBatchDone, isNewBatch, isOutputFormatDefined, makeCopies, makeCopy, numPendingOutput, output, outputPeek, toString, useFilter, wekaStaticWrapper
public java.lang.String globalInfo()
public java.util.Enumeration listOptions()
listOptions
in interface OptionHandler
listOptions
in class PotentialClassIgnorer
public void setOptions(java.lang.String[] options) throws java.lang.Exception
-unset-class-temporarily Unsets the class index temporarily before the filter is applied to the data. (default: no)
-S <num> The scaling factor for the output range. (default: 1.0)
-T <num> The translation of the output range. (default: 0.0)
setOptions
in interface OptionHandler
setOptions
in class PotentialClassIgnorer
options
- the list of options as an array of stringsjava.lang.Exception
- if an option is not supportedpublic java.lang.String[] getOptions()
getOptions
in interface OptionHandler
getOptions
in class PotentialClassIgnorer
public Capabilities getCapabilities()
getCapabilities
in interface CapabilitiesHandler
getCapabilities
in class Filter
Capabilities
public boolean setInputFormat(Instances instanceInfo) throws java.lang.Exception
setInputFormat
in class PotentialClassIgnorer
instanceInfo
- an Instances object containing the input
instance structure (any instances contained in
the object are ignored - only the structure is
required).java.lang.Exception
- if the input format can't be set successfullypublic boolean input(Instance instance) throws java.lang.Exception
public boolean batchFinished() throws java.lang.Exception
batchFinished
in class Filter
java.lang.Exception
- if an error occursjava.lang.IllegalStateException
- if no input structure has been definedpublic java.lang.String toSource(java.lang.String className, Instances data) throws java.lang.Exception
// converts one row
public static Object[] filter(Object[] i);
// converts a full dataset (first dimension is row index)
public static Object[][] filter(Object[][] i);
where the array i
contains elements that are either
Double, String, with missing values represented as null. The generated
code is public domain and comes with no warranty.public double[] getMinArray()
public double[] getMaxArray()
public java.lang.String scaleTipText()
public double getScale()
public void setScale(double value)
value
- the scaling factorpublic java.lang.String translationTipText()
public double getTranslation()
public void setTranslation(double value)
value
- the translationpublic java.lang.String getRevision()
getRevision
in interface RevisionHandler
getRevision
in class Filter
public static void main(java.lang.String[] args)
args
- should contain arguments to the filter, use -h for help