Description Usage Arguments Value
It performs multiple kernel K-means clustering on a multi-view data.
1 2 |
K |
N x N x P array containing P kernel matrices with size N x N. |
centers |
The number of clusters, say k. |
iter.max |
The maximum number of iterations allowed. The default is 10. |
A |
Linear constraint matrix. |
bc |
Lower and upper constraint bounds. |
epsilon |
Convergence threshold. The default is 10^{-4}. |
theta |
intial values for kernel coefficients. The default is 1/P for all views. |
mkkcEst
returns the following components:
A vector of integers (from 1:k
) indicating the cluster to which each point is allocated.
The total sum of squares.
Matrix of within-cluster sum of squares by cluster, one row per view.
Vector of within-cluster sum of squares, one component per cluster.
Vector of within-cluster sum of squares, one component per view.
Total within-cluster sum of squares, i.e. sum(withinsscluster)
.
Vector of between-cluster sum of squares, one component per view.
The between-cluster sum of squares, i.e. totss-tot.withinss
.
The number of clusters, say k
.
The kernel coefficients
The continuous clustering assignment
The number of points, one component per cluster.
The number of iterations.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.