IDAX.PREDICT_KMEANS - Apply a K-means clustering model to new data

Use this stored procedure to apply a K-means clustering model to new data.

Authorization

The privileges held by the authorization ID of the statement must include the IDAX_USER role.

Syntax

IDAX.PREDICT_KMEANS(in parameter_string varchar(32672))

Parameter descriptions

parameter_string
Mandatory one-string parameter that contains pairs of <parameter>=<value> entries that are separated by a comma.
Data type: VARCHAR(32672)
The following list shows the parameter values:
model
Mandatory.
The name of the clustering model.
Data type: VARCHAR(64)
intable
Mandatory.
The name of the input table.
Data type: VARCHAR(128)
outtable
Mandatory.
The name of the output table where the assigned clusters are stored.
Data type: VARCHAR(128)
id
Optional.
The column of the input table that identifies a unique instance ID.
Default: the same id column that is specified in the stored procedure to build the model.
Data type: VARCHAR(128)

Returned information

The number of input table records, which a cluster is assigned to as a result set.