| hanaml.OneClassSVM {hana.ml.r} | R Documentation |
hanaml.OneClassSVM is an R wrapper of PAL oneclass sVM.
hanaml.OneClassSVM (conn.context,
data = NULL,
key = NULL,
features = 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,
nu = NULL,
scale.info = NULL,
categorical.variable = NULL,
category.weight = NULL,
handle.missing = NULL)
conn.context |
|
data |
|
key |
|
features |
|
c |
|
kernel |
|
degree |
|
gamma |
|
coef.lin |
|
coef.const |
|
shrink |
Defaults to TRUE. |
tol |
|
evaluation.seed |
|
thread.ratio |
|
nu |
|
scale.info |
Defaults to "standardization". |
categorical.variable |
|
category.weight |
|
handle.missing |
|
R6Class object.
model : DataFrame
Model content.
stat : DataFrame
statistics.
## Not run:
> features <- list("ATTRIBUTE1", "ATTRIBUTE2", "ATTRIBUTE3", "ATTRIBUTE4")
> svc.one <- hanaml.OneClassSVM(conn.context, df.fit, features, scale.info=0,
category.weight=1)
## End(Not run)