Package org.apache.spark.ml.feature
Interface MinMaxScalerParams
- All Superinterfaces:
HasInputCol
,HasOutputCol
,Identifiable
,Params
,Serializable
- All Known Implementing Classes:
MinMaxScaler
,MinMaxScalerModel
Params for
MinMaxScaler
and MinMaxScalerModel
.-
Method Summary
Modifier and TypeMethodDescriptiondouble
getMax()
double
getMin()
max()
upper bound after transformation, shared by all features Default: 1.0min()
lower bound after transformation, shared by all features Default: 0.0validateAndTransformSchema
(StructType schema) Validates and transforms the input schema.Methods inherited from interface org.apache.spark.ml.param.shared.HasInputCol
getInputCol, inputCol
Methods inherited from interface org.apache.spark.ml.param.shared.HasOutputCol
getOutputCol, outputCol
Methods inherited from interface org.apache.spark.ml.util.Identifiable
toString, uid
Methods inherited from interface org.apache.spark.ml.param.Params
clear, copy, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, onParamChange, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn
-
Method Details
-
getMax
double getMax() -
getMin
double getMin() -
max
DoubleParam max()upper bound after transformation, shared by all features Default: 1.0- Returns:
- (undocumented)
-
min
DoubleParam min()lower bound after transformation, shared by all features Default: 0.0- Returns:
- (undocumented)
-
validateAndTransformSchema
Validates and transforms the input schema.
-