本文主要是介绍sklearn机器学习之Kmeans根据轮廓系数选择参数n_clusters,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1.导入相应包
from sklearn.cluster import KMeans
from sklearn.metrics import silhouette_samples, silhouette_score
from matplotlib import pyplot as plt
from matplotlib import cm
import numpy as np
from sklearn.datasets import make_blobs
2.生成数据集
X, y = make_blobs(n_features=2, centers=4, n_samples=500, random_state=1)
3.绘图(比较复杂,看注释)
#绘制在n_clusters不同情况下的轮廓图与效果图
for n_clusters in [2, 3, 4, 5, 6, 7]:n_clusters = n_clusters#创建画布fig, (ax1, ax2) = plt.subplots(1, 2)#设置画布大小fig.set_size_inches(18, 7)#设置横轴和纵轴作图范围,注意和xticks区别ax1.set_xlim([-0.1, 1])#这里是样本数加间隔数(这里设置为10)ax1.set_ylim([0, X.shape[0] + (n_clusters + 1) * 10])#建立模型并训练clusterer = KMeans(n_clusters=n_clusters, random_state=10).fit(X)#得到标签cluster_labels = clusterer.labels_#获得平均轮廓系数silhouette_avg = silhouette_score(X, cluster_labels)#输出print("For n_clusters =", n_clusters,"The average silhouette_score is", silhouette_avg)#获得每个样本的轮廓系数sample_silhouette_values = silhouette_samples(X, cluster_labels)#为了不贴着x轴画图,设置距离10cmy_lower = 10#画出每个簇的轮廓图for i in range(n_clusters):#第i个簇的值ith_cluster_silhouette_values = sample_silhouette_values[cluster_labels == i]#排序ith_cluster_silhouette_values.sort()#设置y曲线长度size_cluster_i = ith_cluster_silhouette_values.shape[0]y_upper = y_lower + size_cluster_i#设置colormapcolor = cm.nipy_spectral(float(i) / n_clusters)#绘制轮廓这里fill_betweenx是通过x坐标长度绘制,fill_betweeny则是按y坐标来绘制ax1.fill_betweenx(np.arange(y_lower, y_upper), ith_cluster_silhouette_values, facecolor=color, alpha=0.7)#写上文字前两参数时坐标,后面是文字ax1.text(-0.05, y_lower + 0.5 * size_cluster_i, str(i))#设置下一个的y_lowery_lower = y_upper + 10ax1.set_title("The silhouette plot for the various clusters.")ax1.set_xlabel("The silhouette coefficient values")ax1.set_ylabel('Cluster label')#绘制虚直线ax1.axvline(x=silhouette_avg, color='red', linestyle="--")ax1.set_yticks([])ax1.set_xticks([-0.1, 0, 0.2, 0.4, 0.6, 0.8, 1])colors = cm.nipy_spectral(cluster_labels.astype(float) / n_clusters)ax2.scatter(X[:, 0], X[:, 1], marker='o', s=8, c=colors)centers = clusterer.cluster_centers_ax2.scatter(centers[:, 0], centers[:, 1], marker='x', c='red', alpha=1, s=200)ax2.set_title("The visualization of the clustered data.")ax2.set_xlabel("Feature space for the 1st feature")ax2.set_ylabel("Feature space for the 2nd feature")#设置大标题plt.suptitle(("Silhouette analysis for KMeans clustering on sample data with n_clusters = %d" % n_clusters),fontsize=14, fontweight='bold')plt.show()
绘制图像如下:
这篇关于sklearn机器学习之Kmeans根据轮廓系数选择参数n_clusters的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!