public class RFormula extends Estimator<RFormulaModel> implements DefaultParamsWritable
The basic operators are:
- ~
separate target and terms
- +
concat terms, "+ 0" means removing intercept
- -
remove a term, "- 1" means removing intercept
- :
interaction (multiplication for numeric values, or binarized categorical values)
- .
all columns except target
Suppose a
and b
are double columns, we use the following simple examples
to illustrate the effect of RFormula
:
- y ~ a + b
means model y ~ w0 + w1 * a + w2 * b
where w0
is the intercept and w1, w2
are coefficients.
- y ~ a + b + a:b - 1
means model y ~ w1 * a + w2 * b + w3 * a * b
where w1, w2, w3
are coefficients.
RFormula produces a vector column of features and a double or string column of label.
Like when formulas are used in R for linear regression, string input columns will be one-hot
encoded, and numeric columns will be cast to doubles.
If the label column is of type string, it will be first transformed to double with
StringIndexer
. If the label column does not exist in the DataFrame, the output label column
will be created from the specified response variable in the formula.
Modifier and Type | Method and Description |
---|---|
static Params |
clear(Param<?> param) |
RFormula |
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) |
static Param<String> |
featuresCol() |
RFormulaModel |
fit(Dataset<?> dataset)
Fits a model to the input data.
|
BooleanParam |
forceIndexLabel()
Force to index label whether it is numeric or string type.
|
Param<String> |
formula()
R formula parameter.
|
static <T> scala.Option<T> |
get(Param<T> param) |
static <T> scala.Option<T> |
getDefault(Param<T> param) |
static String |
getFeaturesCol() |
boolean |
getForceIndexLabel() |
String |
getFormula() |
static String |
getLabelCol() |
static <T> T |
getOrDefault(Param<T> param) |
static Param<Object> |
getParam(String paramName) |
static <T> boolean |
hasDefault(Param<T> param) |
boolean |
hasLabelCol(StructType schema) |
static boolean |
hasParam(String paramName) |
static boolean |
isDefined(Param<?> param) |
static boolean |
isSet(Param<?> param) |
static Param<String> |
labelCol() |
static RFormula |
load(String path) |
static Param<?>[] |
params() |
static void |
save(String path) |
static <T> Params |
set(Param<T> param,
T value) |
RFormula |
setFeaturesCol(String value) |
RFormula |
setForceIndexLabel(boolean value) |
RFormula |
setFormula(String value)
Sets the formula to use for this transformer.
|
RFormula |
setLabelCol(String value) |
String |
toString() |
StructType |
transformSchema(StructType schema)
:: DeveloperApi ::
|
String |
uid()
An immutable unique ID for the object and its derivatives.
|
static MLWriter |
write() |
write
save
clear, copyValues, defaultCopy, defaultParamMap, explainParam, explainParams, extractParamMap, extractParamMap, get, getDefault, getOrDefault, getParam, hasDefault, hasParam, isDefined, isSet, paramMap, params, set, set, set, setDefault, setDefault, shouldOwn
initializeLogging, initializeLogIfNecessary, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarning
public static RFormula load(String path)
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 Param<String> featuresCol()
public static final String getFeaturesCol()
public static final Param<String> labelCol()
public static final String getLabelCol()
public static void save(String path) throws java.io.IOException
java.io.IOException
public static MLWriter write()
public String uid()
Identifiable
uid
in interface Identifiable
public Param<String> formula()
public RFormula setFormula(String value)
value
- an R formula in string form (e.g. "y ~ x + z")public String getFormula()
public RFormula setFeaturesCol(String value)
public RFormula setLabelCol(String value)
public BooleanParam forceIndexLabel()
public boolean getForceIndexLabel()
public RFormula setForceIndexLabel(boolean value)
public RFormulaModel fit(Dataset<?> dataset)
Estimator
fit
in class Estimator<RFormulaModel>
dataset
- (undocumented)public StructType transformSchema(StructType schema)
PipelineStage
Check 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 PipelineStage
schema
- (undocumented)public RFormula copy(ParamMap extra)
Params
defaultCopy()
.copy
in interface Params
copy
in class Estimator<RFormulaModel>
extra
- (undocumented)public String toString()
toString
in interface Identifiable
toString
in class Object
public boolean hasLabelCol(StructType schema)