| hanaml.SVRanking {hana.ml.r} | R Documentation |
hanaml.SVRanking is an R wrapper of PAL sVM for ranking.
hanaml.SVRanking (conn.context,
data = NULL,
key = NULL,
features = NULL,
label = NULL,
qid = 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 |
|
qid |
|
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.
model: DataFrame
Model content
stat: DataFrame
statistics.
## Not run:
> features <- list("ATTRIBUTE1", "ATTRIBUTE2", "ATTRIBUTE3", "ATTRIBUTE4",
"ATTRIBUTE5")
> svranking <- hanaml.SVRanking(conn.context, df.fit, features, qid="QID",
gamma = 0.005)
## End(Not run)