具有距离阈值停止准则的编辑距离矩阵的单联动聚类 [英] Single linkage clustering of edit distance matrix with distance threshold stopping criterion

查看:122
本文介绍了具有距离阈值停止准则的编辑距离矩阵的单联动聚类的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将平坦的单链接簇分配给以编辑距离< n,给定平方距离矩阵.我相信scipy.cluster.hierarchy.fclusterdata()criterion='distance'可能是实现此目的的一种方法,但是它并没有完全返回我希望为这个玩具示例提供的聚类.

I'm trying to assign flat, single-linkage clusters to sequence IDs separated by an edit distance < n, given a square distance matrix. I believe scipy.cluster.hierarchy.fclusterdata() with criterion='distance' may be a way to do this, but it isn't quite returning the clusters I'd expect for this toy example.

具体地说,在下面的4x4距离矩阵示例中,我希望clusters_50(使用t=50)创建2个群集,实际上它找到3个群集.我认为问题是fclusterdata()不会距离矩阵,但是fcluster()似乎也没有执行我想要的操作.

Specifically, in the 4x4 distance matrix example below, I would expect clusters_50 (which uses t=50) to create 2 clusters, where actually it finds 3. I think the issue is that fclusterdata() doesn't expect a distance matrix, but fcluster() doesn't seem to do what I want either.

我也查看了sklearn.cluster.AgglomerativeClustering,但这需要指定n_clusters,并且我想根据需要创建尽可能多的聚类,直到满足我指定的距离阈值为止.

I've also looked at sklearn.cluster.AgglomerativeClustering but this requires n_clusters to be specified, and I want to create as many clusters as needed until the distance threshold I specify has been satisfied.

我看到有一个针对此确切功能的当前未合并 scikit-learn请求: https://github.com/scikit-learn/scikit-learn/pull/9069

I see that there is a currently unmerged scikit-learn pull request for this exact feature: https://github.com/scikit-learn/scikit-learn/pull/9069

有人能指出我正确的方向吗?用绝对距离阈值条件进行聚类似乎是一个通用用例.

Can anyone point me in the right direction? Clustering with an absolute distance threshold criterion seems like a commmon use case.

import pandas as pd
from scipy.cluster.hierarchy import fclusterdata

cols = ['a', 'b', 'c', 'd']

df = pd.DataFrame([{'a': 0, 'b': 29467, 'c': 35, 'd': 13},
                   {'a': 29467, 'b': 0, 'c': 29468, 'd': 29470},
                   {'a': 35, 'b': 29468, 'c': 0, 'd': 38},
                   {'a': 13, 'b': 29470, 'c': 38, 'd': 0}],
                  index=cols)

clusters_20 = fclusterdata(df.values, t=20, criterion='distance')
clusters_50 = fclusterdata(df.values, t=50, criterion='distance')
clusters_100 = fclusterdata(df.values, t=100, criterion='distance')

names_clusters_20 = {n: c for n, c in zip(cols, clusters_20)}
names_clusters_50 = {n: c for n, c in zip(cols, clusters_50)}
names_clusters_100 = {n: c for n, c in zip(cols, clusters_100)}

names_clusters_20  # Expecting 3 clusters, finds 3
>>> {'a': 1, 'b': 3, 'c': 2, 'd': 1}

names_clusters_50  # Expecting 2 clusters, finds 3
>>> {'a': 1, 'b': 3, 'c': 2, 'd': 1}

names_clusters_100 # Expecting 2 clusters, finds 2
>>> {'a': 1, 'b': 2, 'c': 1, 'd': 1}

推荐答案

通过将linkage()传递给fcluster()来解决该问题,与fclusterdata()相比,c5支持metric='precomputed'.

Figured it out by passing linkage() to fcluster(), which supports metric='precomputed' unlike fclusterdata().

fcluster(linkage(condensed_dm, metric='precomputed'), criterion='distance', t=20)

解决方案:

import pandas as pd
from scipy.spatial.distance import squareform
from scipy.cluster.hierarchy import linkage, fcluster

cols = ['a', 'b', 'c', 'd']

df = pd.DataFrame([{'a': 0, 'b': 29467, 'c': 35, 'd': 13},
                   {'a': 29467, 'b': 0, 'c': 29468, 'd': 29470},
                   {'a': 35, 'b': 29468, 'c': 0, 'd': 38},
                   {'a': 13, 'b': 29470, 'c': 38, 'd': 0}],
                  index=cols)

dm_cnd = squareform(df.values)

clusters_20 = fcluster(linkage(dm_cnd, metric='precomputed'), criterion='distance', t=20)
clusters_50 = fcluster(linkage(dm_cnd, metric='precomputed'), criterion='distance', t=50)
clusters_100 = fcluster(linkage(dm_cnd, metric='precomputed'), criterion='distance', t=100)

names_clusters_20 = {n: c for n, c in zip(cols, clusters_20)}
names_clusters_50 = {n: c for n, c in zip(cols, clusters_50)}
names_clusters_100 = {n: c for n, c in zip(cols, clusters_100)}

names_clusters_20
>>> {'a': 1, 'b': 3, 'c': 2, 'd': 1}

names_clusters_50
>>> {'a': 1, 'b': 2, 'c': 1, 'd': 1}

names_clusters_100
>>> {'a': 1, 'b': 2, 'c': 1, 'd': 1}

作为功能:

import pandas as pd
from scipy.spatial.distance import squareform
from scipy.cluster.hierarchy import fcluster, linkage

def cluster_df(df, method='single', threshold=100):
    '''
    Accepts a square distance matrix as an indexed DataFrame and returns a dict of index keyed flat clusters 
    Performs single linkage clustering by default, see scipy.cluster.hierarchy.linkage docs for others
    '''

    dm_cnd = squareform(df.values)
    clusters = fcluster(linkage(dm_cnd,
                                method=method,
                                metric='precomputed'),
                        criterion='distance',
                        t=threshold)
    names_clusters = {s:c for s, c in zip(df.columns, clusters)}
return names_clusters

这篇关于具有距离阈值停止准则的编辑距离矩阵的单联动聚类的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆