| hanaml.SVR {hana.ml.r} | R Documentation |
hanaml.SVR is an R wrapper of PAL SVM for regression.
hanaml.SVR (conn.context,
data = NULL,
key = NULL,
features = NULL,
label = NULL,
c = NULL,
kernel = NULL,
degree = NULL,
gamma = NULL,
coef.lin = NULL,
coef.const = NULL,
shrink = NULL,
tol = NULL,
evaluation.seed = NULL,
thread.ratio = NULL,
scale.info = NULL,
scale.label = NULL,
categorical.variable = NULL,
category.weight = NULL,
regression.eps = NULL,
handle.missing = NULL)
conn.context |
|
data |
|
key |
|
features |
|
label |
|
c |
|
kernel |
|
degree |
|
gamma |
|
coef.lin |
|
coef.const |
|
shrink |
Defaults to TRUE. |
tol |
|
evaluation.seed |
|
thread.ratio |
|
scale.info |
Defaults to "standardization". |
scale.label |
|
categorical.variable |
|
category.weight |
|
regression.eps |
|
handle.missing |
|
R6Class object.
model: DataFrame
Model content.
stat: DataFrame
Statistics.
## Not run:
> svr <- hanaml.SVR(conn.context, data, "ID", list("ATTRIBUTE1", "ATTRIBUTE2",
"ATTRIBUTE3", "ATTRIBUTE4","ATTRIBUTE5"),kernel="linear",
scale.info = 1, scale.label = 1)
## End(Not run)