| hanaml.SVC {hana.ml.r} | R Documentation |
hanaml.SVC is an R wrapper of PAL SVM for classification.
hanaml.SVC (conn.context,
data = NULL,
key = NULL,
features = NULL,
label = NULL,
c = NULL,
kernel= NULL,
degree = NULL,
gamma = NULL,
coef.lin = NULL,
coef.const = NULL,
probability = NULL,
shrink = NULL,
tol = NULL,
evaluation.seed = NULL,
thread.ratio = NULL,
scale.info = NULL,
categorical.variable = NULL,
category.weight = NULL,
handle.missing = NULL)
conn.context |
|
data |
|
key |
|
features |
|
label |
|
c |
|
kernel |
|
degree |
|
gamma |
|
coef.lin |
|
coef.const |
|
probability |
|
shrink |
Defaults to TRUE. |
tol |
|
evaluation.seed |
|
thread.ratio |
|
scale.info |
Defaults to "standardization". |
categorical.variable |
|
category.weight |
|
handle.missing |
|
R6Class object.
Return a "SVC" object with following value:
model : DataFrame
Model content.
stat : DataFrame
statistics.
## Not run:
> svc <- hanaml.SVC(conn.context, data, key = "ID",
features = list ("ATTRIBUTE1", "ATTRIBUTE2", "ATTRIBUTE3", "ATTRIBUTE4"),
gamma = 0.005)
## End(Not run)