public class Imputer extends Estimator<ImputerModel> implements DefaultParamsWritable
Note that the mean/median value is computed after filtering out missing values. All Null values in the input columns are treated as missing, and so are also imputed. For computing median, DataFrameStatFunctions.approxQuantile is used with a relative error of 0.001.
| Modifier and Type | Method and Description |
|---|---|
static Params |
clear(Param<?> param) |
Imputer |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params.
|
static String |
explainParam(Param<?> param) |
static String |
explainParams() |
static ParamMap |
extractParamMap() |
static ParamMap |
extractParamMap(ParamMap extra) |
ImputerModel |
fit(Dataset<?> dataset)
Fits a model to the input data.
|
static <T> scala.Option<T> |
get(Param<T> param) |
static <T> scala.Option<T> |
getDefault(Param<T> param) |
static String[] |
getInputCols() |
static double |
getMissingValue() |
double |
getMissingValue() |
static <T> T |
getOrDefault(Param<T> param) |
static String[] |
getOutputCols() |
static Param<Object> |
getParam(String paramName) |
static String |
getStrategy() |
String |
getStrategy() |
static <T> boolean |
hasDefault(Param<T> param) |
static boolean |
hasParam(String paramName) |
static StringArrayParam |
inputCols() |
static boolean |
isDefined(Param<?> param) |
static boolean |
isSet(Param<?> param) |
static Imputer |
load(String path) |
static DoubleParam |
missingValue() |
DoubleParam |
missingValue()
The placeholder for the missing values.
|
static StringArrayParam |
outputCols() |
static Param<?>[] |
params() |
static void |
save(String path) |
static <T> Params |
set(Param<T> param,
T value) |
Imputer |
setInputCols(String[] value) |
Imputer |
setMissingValue(double value) |
Imputer |
setOutputCols(String[] value) |
Imputer |
setStrategy(String value)
Imputation strategy.
|
static Param<String> |
strategy() |
Param<String> |
strategy()
The imputation strategy.
|
static String |
toString() |
StructType |
transformSchema(StructType schema)
:: DeveloperApi ::
|
String |
uid()
An immutable unique ID for the object and its derivatives.
|
StructType |
validateAndTransformSchema(StructType schema)
Validates and transforms the input schema.
|
static MLWriter |
write() |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetInputCols, inputColsgetOutputCols, outputColsclear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwntoStringwritesaveinitializeLogging, initializeLogIfNecessary, initializeLogIfNecessary, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarningpublic static Imputer load(String path)
public static String toString()
public static Param<?>[] params()
public static String explainParam(Param<?> param)
public static String explainParams()
public static final boolean isSet(Param<?> param)
public static final boolean isDefined(Param<?> param)
public static boolean hasParam(String paramName)
public static Param<Object> getParam(String paramName)
public static final <T> scala.Option<T> get(Param<T> param)
public static final <T> T getOrDefault(Param<T> param)
public static final <T> scala.Option<T> getDefault(Param<T> param)
public static final <T> boolean hasDefault(Param<T> param)
public static final ParamMap extractParamMap()
public static final StringArrayParam inputCols()
public static final String[] getInputCols()
public static final StringArrayParam outputCols()
public static final String[] getOutputCols()
public static final Param<String> strategy()
public static String getStrategy()
public static final DoubleParam missingValue()
public static double getMissingValue()
public static void save(String path)
throws java.io.IOException
java.io.IOExceptionpublic static MLWriter write()
public String uid()
Identifiableuid in interface Identifiablepublic Imputer setInputCols(String[] value)
public Imputer setOutputCols(String[] value)
public Imputer setStrategy(String value)
value - (undocumented)public Imputer setMissingValue(double value)
public ImputerModel fit(Dataset<?> dataset)
Estimatorfit in class Estimator<ImputerModel>dataset - (undocumented)public StructType transformSchema(StructType schema)
PipelineStageCheck transform validity and derive the output schema from the input schema.
We check validity for interactions between parameters during transformSchema and
raise an exception if any parameter value is invalid. Parameter value checks which
do not depend on other parameters are handled by Param.validate().
Typical implementation should first conduct verification on schema change and parameter validity, including complex parameter interaction checks.
transformSchema in class PipelineStageschema - (undocumented)public Imputer copy(ParamMap extra)
ParamsdefaultCopy().copy in interface Paramscopy in class Estimator<ImputerModel>extra - (undocumented)public double getMissingValue()
public String getStrategy()
public DoubleParam missingValue()
public Param<String> strategy()
public StructType validateAndTransformSchema(StructType schema)