[Solved] Meaning of these R codes? Are they correlated?


The first line does the cluster analysis, and stores the cluster labels in a component called cluster_iris$cluster which is just a vector of numbers.

The second line puts that cluster number as a categorical label onto the rows of the original data set. So now your iris data has all the petal and sepal stuff and a cluster index in a column called "ClusterM".

> head(iris)
  Sepal.Length Sepal.Width Petal.Length Petal.Width Species ClusterM
1          5.1         3.5          1.4         0.2  setosa        1
2          4.9         3.0          1.4         0.2  setosa        3
3          4.7         3.2          1.3         0.2  setosa        3
4          4.6         3.1          1.5         0.2  setosa        3

solved Meaning of these R codes? Are they correlated?