📜  如何获取每个集群中的值 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:55.742000             🧑  作者: Mango

代码示例1
data = pd.read_csv('filename')

km = KMeans(n_clusters=5).fit(data)

cluster_map = pd.DataFrame()
cluster_map['data_index'] = data.index.values
cluster_map['cluster'] = km.labels_

#Once the DataFrame is available is quite easy to filter, For example, to filter all data points in cluster 3
cluster_map[cluster_map.cluster == 3]