Perform the following steps to perform model-based clustering:
- First, install and load the following package:
install.packages("mclust")library(mclust)
- Then, perform model-based clustering on the multishapes dataset:
> mm = Mclust(dataPoints)
- Now plot the result and press 1 to obtain the BIC against a number of components:
> plot(mm)

- Next, press 2 to show the classification with respect to different combinations of features:

- Then, press 3 to show the classification uncertainty with respect to different feature combinations: ...