dataset is pandas dataframe. This is sklearn.cluster.KMeans
 km = KMeans(n_clusters = n_Clusters)
 km.fit(dataset)
 prediction = km.predict(dataset)
This is how I decide which entity belongs to which cluster:
 for i in range(len(prediction)):
     cluster_fit_dict[dataset.index[i]] = prediction[i]
This is how dataset looks:
 A 1 2 3 4 5 6
 B 2 3 4 5 6 7
 C 1 4 2 7 8 1
 ...
where A,B,C are indices
Is this the correct way of using k-means?
 
     
     
    