I have a general question on applying k-means clustering on the datasets..
How to find the feature/(data column) that separates each cluster of K-means?
may be using scikit-learn in python ..
Best Regards, Swati
I have a general question on applying k-means clustering on the datasets..
How to find the feature/(data column) that separates each cluster of K-means?
may be using scikit-learn in python ..
Best Regards, Swati
kmeans.labels_
andkmeans.cluster_centers_
. Check documentation https://scikit-learn.org/stable/modules/generated/sklearn.cluster.KMeans.html – chlebek Oct 17 '19 at 08:59