Expectation-Maximization clustering method
Run the EM algorithm for clustering.
EM(d, clusters, model = "VVV", ...)
d |
The dataset ( |
clusters |
Either an integer (the number of clusters) or a ( |
model |
A character string indicating the model. The help file for |
... |
Other parameters. |
A clustering model obtained by EM.
require (datasets) data (iris) EM (iris [, -5], 3) # Default initialization km = KMEANS (iris [, -5], k = 3) EM (iris [, -5], km$cluster) # Initialization with another clustering method
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.