Very basic question:
How do I print the observations attributed to any one cluster?
data = pd.read_csv('my_file.csv')
X = data[['Var1','Var2','Var3']]
ms = MeanShift()
ms.fit(X)
labels = ms.labels_
cluster_centers = ms.cluster_centers_
I'd just like to see the values of 'Var1','Var2','Var3' for any one cluster.