public class IsotonicRegression extends Estimator<IsotonicRegressionModel>
Constructor and Description |
---|
IsotonicRegression() |
IsotonicRegression(String uid) |
Modifier and Type | Method and Description |
---|---|
IsotonicRegression |
copy(ParamMap extra)
Creates a copy of this instance with the same UID and some extra params.
|
RDD<scala.Tuple3<Object,Object,Object>> |
extractWeightedLabeledPoints(DataFrame dataset)
Extracts (label, feature, weight) from input dataset.
|
IntParam |
featureIndex()
Param for the index of the feature if
featuresCol is a vector column (default: 0 ), no
effect otherwise. |
IsotonicRegressionModel |
fit(DataFrame dataset)
Fits a model to the input data.
|
int |
getFeatureIndex() |
boolean |
getIsotonic() |
boolean |
hasWeightCol()
Checks whether the input has weight column.
|
BooleanParam |
isotonic()
Param for whether the output sequence should be isotonic/increasing (true) or
antitonic/decreasing (false).
|
static IsotonicRegression |
load(String path) |
IsotonicRegression |
setFeatureIndex(int value) |
IsotonicRegression |
setFeaturesCol(String value) |
IsotonicRegression |
setIsotonic(boolean value) |
IsotonicRegression |
setLabelCol(String value) |
IsotonicRegression |
setPredictionCol(String value) |
IsotonicRegression |
setWeightCol(String value) |
StructType |
transformSchema(StructType schema)
:: DeveloperApi ::
|
String |
uid()
An immutable unique ID for the object and its derivatives.
|
StructType |
validateAndTransformSchema(StructType schema,
boolean fitting) |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
clear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn, validateParams
toString
initializeIfNecessary, initializeLogging, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning
public IsotonicRegression(String uid)
public IsotonicRegression()
public static IsotonicRegression load(String path)
public String uid()
Identifiable
uid
in interface Identifiable
public IsotonicRegression setLabelCol(String value)
public IsotonicRegression setFeaturesCol(String value)
public IsotonicRegression setPredictionCol(String value)
public IsotonicRegression setIsotonic(boolean value)
public IsotonicRegression setWeightCol(String value)
public IsotonicRegression setFeatureIndex(int value)
public IsotonicRegression copy(ParamMap extra)
Params
copy
in interface Params
copy
in class Estimator<IsotonicRegressionModel>
extra
- (undocumented)defaultCopy()
public IsotonicRegressionModel fit(DataFrame dataset)
Estimator
fit
in class Estimator<IsotonicRegressionModel>
dataset
- (undocumented)public StructType transformSchema(StructType schema)
PipelineStage
Derives the output schema from the input schema.
transformSchema
in class PipelineStage
schema
- (undocumented)public BooleanParam isotonic()
public boolean getIsotonic()
public IntParam featureIndex()
featuresCol
is a vector column (default: 0
), no
effect otherwise.public int getFeatureIndex()
public boolean hasWeightCol()
public RDD<scala.Tuple3<Object,Object,Object>> extractWeightedLabeledPoints(DataFrame dataset)
dataset
- (undocumented)public StructType validateAndTransformSchema(StructType schema, boolean fitting)