public class StandardizeTransform extends Object implements InPlaceTransform
ZeroMeanTransform
followed
by UnitVarianceTransform
.Constructor and Description |
---|
StandardizeTransform()
Creates a new object for Standardizing datasets
|
StandardizeTransform(DataSet dataset)
Creates a new object for standaidizing datasets fit to the given dataset
|
StandardizeTransform(StandardizeTransform toCopy)
Copy constructor
|
Modifier and Type | Method and Description |
---|---|
StandardizeTransform |
clone() |
void |
fit(DataSet dataset)
Fits this transform to the given dataset.
|
void |
mutableTransform(DataPoint dp)
Mutates the given data point.
|
boolean |
mutatesNominal()
By default returns
false . |
DataPoint |
transform(DataPoint dp)
Returns a new data point that is a transformation of the original data
point.
|
public StandardizeTransform()
public StandardizeTransform(DataSet dataset)
dataset
- the dataset to learn how to standardize frompublic StandardizeTransform(StandardizeTransform toCopy)
toCopy
- the object to copypublic void fit(DataSet dataset)
DataTransform
FailedToFitException
exception may be
thrown.fit
in interface DataTransform
dataset
- the dataset to fir this transform topublic DataPoint transform(DataPoint dp)
DataTransform
transform
in interface DataTransform
dp
- the data point to apply a transformation topublic void mutableTransform(DataPoint dp)
InPlaceTransform
DataTransform.transform(jsat.classifiers.DataPoint)
.mutableTransform
in interface InPlaceTransform
dp
- the data point to alterpublic boolean mutatesNominal()
InPlaceTransform
false
. Only returns true if this transform
will mutableTransform the nominal feature values of a data point.mutatesNominal
in interface InPlaceTransform
true
if nominal feature values are mutated, false
otherwise.public StandardizeTransform clone()
clone
in interface DataTransform
clone
in class Object
Copyright © 2017. All rights reserved.