<model name>_CLUSTERS table
This table contains a list of all the clusters in the model and information about these clusters.
The table contains one line for each cluster.
The following table shows the table columns:
Column name | Data type | Description |
---|---|---|
CLUSTERID (primary key column) | INTEGER | Index value of the cluster in the cluster model If CLUSTERID is 0, the row pertains to all input records. |
NAME | VARCHAR(100) | Name of the cluster The default value is CLUSTERID. To change the value, use the set_ClusterName function. |
DESCRIPTION | VARCHAR(10000) | Textual cluster description The default value is NULL. To change the value, use the set_ClusterName function. |
SIZE | BIGINT | Number of data records in the cluster |
RELSIZE | DOUBLE | Relative size of the cluster, that is, SIZE/SIZE(0) |
WITHINSS | DOUBLE |
A measure of the cluster homogeneity, that is, the sum of squared distances between records of the cluster and the cluster center. |