Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

Python 教程

Python 主页 Python 简介 Python 入门 Python 语法 Python 注释 Python 变量 Python 数据类型 Python 数字 Python 类型转换 Python 字符串 Python 布尔值 Python 运算符 Python 列表 Python 元组 Python 集合 Python 字典 Python If...Else Python While 循环 Python For 循环 Python 函数 Python 匿名函数 Python 数组 Python 类/对象 Python 继承 Python 迭代器 Python 多态 Python 作用域 Python 模块 Python 日期 Python 数学 Python JSON Python 正则表达式 Python PIP Python Try...Except Python 用户输入 Python 字符串格式化

文件处理

Python 文件处理 Python 读取文件 Python 写入/创建文件 Python 删除文件

Python 模块

NumPy 教程 Pandas 教程 SciPy 教程 Django 教程

Python Matplotlib

Matplotlib 简介 Matplotlib 入门 Matplotlib Pyplot Matplotlib 绘图 Matplotlib 标记 Matplotlib 线 Matplotlib 标签 Matplotlib 网格 Matplotlib 子图 Matplotlib 散点图 Matplotlib 条形图 Matplotlib 直方图 Matplotlib 饼图

机器学习

入门 平均数 中位数 众数 标准差 百分位数 数据分布 正态分布 散点图 线性回归 多项式回归 多元回归 缩放 训练/测试 决策树 混淆矩阵 层次聚类 逻辑回归 网格搜索 分类数据 K 均值聚类 自助聚合 交叉验证 AUC - ROC 曲线 K 近邻算法

Python MySQL

MySQL 入门 MySQL 创建数据库 MySQL 创建表 MySQL 插入数据 MySQL 查询数据 MySQL 条件查询 MySQL 排序 MySQL 删除数据 MySQL 删除表 MySQL 更新数据 MySQL 限制 MySQL 联接

Python MongoDB

MongoDB 入门 MongoDB 创建数据库 MongoDB 集合 MongoDB 插入数据 MongoDB 查找数据 MongoDB 查询 MongoDB 排序 MongoDB 删除数据 MongoDB 删除集合 MongoDB 更新数据 MongoDB 限制

Python 参考

Python 概述 Python 内置函数 Python 字符串方法 Python 列表方法 Python 字典方法 Python 元组方法 Python 集合方法 Python 文件方法 Python 关键字 Python 异常 Python 词汇表

模块参考

随机模块 请求模块 统计模块 数学模块 复数数学模块

Python 如何

删除列表重复项 反转字符串 添加两个数字

Python 示例

Python 示例 Python 编译器 Python 练习 Python 测验 Python 服务器 Python 面试问答 Python 集训营 Python 证书

机器学习 - K 均值聚类


在本页面,W3schools.com 与 NYC 数据科学学院 合作,为我们的学生提供数字培训内容。


K 均值聚类

K 均值聚类是一种无监督学习方法,用于对数据点进行聚类。该算法通过最小化每个聚类的方差,迭代地将数据点划分为 K 个聚类。

在本节中,我们将向您展示如何使用肘部法估计 K 的最佳值,然后使用 K 均值聚类将数据点分组到聚类中。


它是如何工作的?

首先,每个数据点被随机分配到 K 个聚类中的一个。然后,我们计算每个聚类的质心(功能上是中心),并将每个数据点重新分配到具有最接近质心的聚类。我们重复此过程,直到每个数据点的聚类分配不再改变。

K 均值聚类要求我们选择 K,即我们要将数据分组到的聚类数量。肘部法让我们绘制惯性(基于距离的度量)并可视化它开始线性下降的点。这个点被称为“肘部”,是根据我们的数据估计 K 的最佳值的良好指标。

示例

首先可视化一些数据点

import matplotlib.pyplot as plt

x = [4, 5, 10, 4, 3, 11, 14 , 6, 10, 12]
y = [21, 19, 24, 17, 16, 25, 24, 22, 21, 21]

plt.scatter(x, y)
plt.show()

结果

运行示例 »

广告


现在我们利用肘部法可视化不同 K 值的惯性

示例

from sklearn.cluster import KMeans

data = list(zip(x, y))
inertias = []

for i in range(1,11)
    kmeans = KMeans(n_clusters=i)
    kmeans.fit(data)
    inertias.append(kmeans.inertia_)

plt.plot(range(1,11), inertias, marker='o')
plt.title('Elbow method')
plt.xlabel('Number of clusters')
plt.ylabel('Inertia')
plt.show()

结果

运行示例 »

肘部法表明 2 是 K 的一个好值,因此我们重新训练并可视化结果

示例

kmeans = KMeans(n_clusters=2)
kmeans.fit(data)

plt.scatter(x, y, c=kmeans.labels_)
plt.show()

结果

运行示例 »

示例解释

导入所需的模块。

import matplotlib.pyplot as plt
from sklearn.cluster import KMeans

您可以在我们的 "Matplotlib 教程" 中了解 Matplotlib 模块。

scikit-learn 是一个流行的机器学习库。

创建类似于数据集中两个变量的数组。请注意,虽然我们这里只使用两个变量,但这种方法适用于任意数量的变量。

x = [4, 5, 10, 4, 3, 11, 14 , 6, 10, 12]
y = [21, 19, 24, 17, 16, 25, 24, 22, 21, 21]

将数据转换为一组点

data = list(zip(x, y))
print(data)

结果

[(4, 21), (5, 19), (10, 24), (4, 17), (3, 16), (11, 25), (14, 24), (6, 22), (10, 21), (12, 21)]

为了找到 K 的最佳值,我们需要对我们的一系列可能值的数据运行 K 均值。我们只有 10 个数据点,所以最大聚类数量是 10。所以对于 range(1,11) 中的每个值 K,我们训练一个 K 均值模型,并在该聚类数量下绘制惯性。

inertias = []

for i in range(1,11)
    kmeans = KMeans(n_clusters=i)
    kmeans.fit(data)
    inertias.append(kmeans.inertia_)

plt.plot(range(1,11), inertias, marker='o')
plt.title('Elbow method')
plt.xlabel('Number of clusters')
plt.ylabel('Inertia')
plt.show()

结果

我们可以看到,上面图形中的“肘部”(惯性变得更加线性的地方)位于 K=2。然后,我们可以再次拟合我们的 K 均值算法,并绘制分配给数据的不同聚类。

kmeans = KMeans(n_clusters=2)
kmeans.fit(data)

plt.scatter(x, y, c=kmeans.labels_)
plt.show()

结果


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.