public class InsertMissingValuesTransform extends Object implements InPlaceTransform
Constructor and Description |
---|
InsertMissingValuesTransform(double prob) |
InsertMissingValuesTransform(double prob,
Random rand) |
Modifier and Type | Method and Description |
---|---|
InsertMissingValuesTransform |
clone() |
void |
fit(DataSet data)
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 InsertMissingValuesTransform(double prob)
prob
- the probability of setting each feature to missingpublic InsertMissingValuesTransform(double prob, Random rand)
prob
- the probability of setting each feature to missingrand
- the source of randomnesspublic void fit(DataSet data)
DataTransform
FailedToFitException
exception may be
thrown.fit
in interface DataTransform
data
- the dataset to fir this transform 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 DataPoint transform(DataPoint dp)
DataTransform
transform
in interface DataTransform
dp
- the data point to apply a transformation topublic InsertMissingValuesTransform clone()
clone
in interface DataTransform
clone
in class Object
Copyright © 2017. All rights reserved.