栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

DBSCAN

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

DBSCAN

# -*- coding: utf-8 -*-

import numpy as np
from ExpandCluster import Expand_Cluster
from SearchRecord import ClusterSum

UNCLASSIFIED = False
NOISE = 0

def LoadDataSet(fileName, splitChar='t'):
    """
    输入:文件名
    输出:数据集
    描述:从文件读入数据集
    """
    #   请在此添加实现代码     #
    #********** Begin *********#
    #从txt文件中读取数据
    dataSet = []
    with open(fileName) as fr:
        for line in fr.readlines():
            curline = line.strip().split(splitChar)
            fltline = list(map(float, curline))
            dataSet.append(fltline)
    return dataSet
    #********** End ***********#

def DBScan(data, eps, minPts):
    """
    输入:数据集, 半径大小, 最小点个数
    输出:分类簇id
    """
    #   请在此添加实现代码     #
    #********** Begin *********#
    #调用Expand_Cluster函数,开始聚类
    clusterId = 1
    nPoints = data.shape[1]
    clusterResult = [UNCLASSIFIED] * nPoints
    for pointId in range(nPoints):
        point = data[:, pointId]
        if clusterResult[pointId] == UNCLASSIFIED:
            if Expand_Cluster(data, clusterResult, pointId, clusterId, eps, minPts):
                clusterId = clusterId + 1
    return clusterResult, clusterId - 1
    #********** End ***********#

def main():
    dataSet = LoadDataSet('DBScan/DataPoints.txt', splitChar=',')
    dataSet = np.mat(dataSet).transpose()
    clusters, clusterNum = DBScan(dataSet, 2, 15)
    print("cluster Numbers = ", clusterNum)
    clustersum = ClusterSum(clusters, clusterNum)
    print(clustersum)

if __name__ == '__main__':
    main()

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/876630.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号