I am trying to learn machine learning and I am stuck at some point in kmeans algorithm. I have two questions on kmeans.
- I have gone through many kmeans algorithm example and most of them stops as soon as the kmeans cluster plot is done in graph. but I want the final predicted column to find the complete answer. Can I know how can I get the corresponding data.
For example, if I have three clusters and I want to get the records for different clusters and want to assign some value for them in my predicted column. what should I do?
- when I am doing the plotting for cluster, I am using only two of the observations from my entire dataset. What happens when I have more observations in my dataset and there is a dependency on the columns and I want to make use of them as well. Do I need to create separate cluster plots for these and then start analysing them as well?