python - 使用带有 pdist 和 squareform 的 nparray 创建距离矩阵

标签 python scipy cluster-analysis scikit-learn dbscan

我正在尝试使用 DBSCAN(scikit 学习实现)和位置数据进行聚类。我的数据是 np 数组格式,但要将 DBSCAN 与 Haversine 公式一起使用,我需要创建一个距离矩阵。当我尝试执行此操作时出现以下错误(“模块”不可调用错误。)根据我在网上阅读的内容,这是一个导入错误,但我很确定我不是这种情况。我已经创建了自己的半正弦距离公式,但我确信错误不在于此。

这是我的输入数据,一个 np 数组 (ResultArray)。

[[ 53.3252628   -6.2644198 ]
[ 53.3287395   -6.2646543 ]
[ 53.33321202  -6.24785807]
[ 53.3261015   -6.2598324 ]
[ 53.325291    -6.2644105 ]
[ 53.3281323   -6.2661467 ]
[ 53.3253074   -6.2644483 ]
[ 53.3388147   -6.2338417 ]
[ 53.3381102   -6.2343826 ]
[ 53.3253074   -6.2644483 ]
[ 53.3228188   -6.2625379 ]
[ 53.3253074   -6.2644483 ]]

这是出错的代码行。

distance_matrix = sp.spatial.distance.squareform(sp.spatial.distance.pdist
(ResultArray,(lambda u,v: haversine(u,v))))

这是错误信息:

File "Location.py", line 48, in <module>
distance_matrix = sp.spatial.distance.squareform(sp.spatial.distance.pdist
(ResArray,(lambda u,v: haversine(u,v))))
File "/usr/lib/python2.7/dist-packages/scipy/spatial/distance.py", line 1118, in pdist
dm[k] = dfun(X[i], X[j])
File "Location.py", line 48, in <lambda>
distance_matrix = sp.spatial.distance.squareform(sp.spatial.distance.pdist
(ResArray,(lambda u,v: haversine(u,v))))
TypeError: 'module' object is not callable

我将 scipy 导入为 sp。 (将 scipy 导入为 sp)

最佳答案

使用 Scipy,您可以按照此 link 上的文档的建议定义自定义距离函数为方便起见,在此报告:

Y = pdist(X, f)
Computes the distance between all pairs of vectors in X using the user supplied 2-arity function f. For example, Euclidean distance between the vectors could be computed as follows:

dm = pdist(X, lambda u, v: np.sqrt(((u-v)**2).sum()))

在这里,我报告了我的代码版本,其灵感来源于此 link 中的代码。 :

from numpy import sin,cos,arctan2,sqrt,pi # import from numpy
# earth's mean radius = 6,371km
EARTHRADIUS = 6371.0

def getDistanceByHaversine(loc1, loc2):
    '''Haversine formula - give coordinates as a 2D numpy array of
    (lat_denter link description hereecimal,lon_decimal) pairs'''
    #      
    # "unpack" our numpy array, this extracts column wise arrays
    lat1 = loc1[1]
    lon1 = loc1[0]
    lat2 = loc2[1]
    lon2 = loc2[0]
    #
    # convert to radians ##### Completely identical
    lon1 = lon1 * pi / 180.0
    lon2 = lon2 * pi / 180.0
    lat1 = lat1 * pi / 180.0
    lat2 = lat2 * pi / 180.0
    #
    # haversine formula #### Same, but atan2 named arctan2 in numpy
    dlon = lon2 - lon1
    dlat = lat2 - lat1
    a = (sin(dlat/2))**2 + cos(lat1) * cos(lat2) * (sin(dlon/2.0))**2
    c = 2.0 * arctan2(sqrt(a), sqrt(1.0-a))
    km = EARTHRADIUS * c
    return km

并通过以下方式调用:

D = spatial.distance.pdist(A, lambda u, v: getDistanceByHaversine(u,v))

在我的实现中,矩阵 A 的第一列是经度值,第二列是以十进制表示的纬度值。

关于python - 使用带有 pdist 和 squareform 的 nparray 创建距离矩阵,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22081503/

相关文章:

android - Android 上的 kivy/Python 缺少 Unicode 编解码器?

python-3.x - Delaunay 三角剖分简化 - scipy

matlab - MATLAB 中的聚类文本

python - 如何在不同长度轴的 n 维中进行插值

python-3.x - 使用python打开.mat(matlab数据)

R 集群包错误 Daisy() 函数长向量(参数 11)在 .C 中不受支持

java - 简单的java程序根据它们的值来处理canopy簇字符串

python - GAE BigQuery 在开发服务器上运行,但部署时出现 HTTP 400 错误

Python Paramiko,权限错误: [Errno 13] Permission denied when get files from remote server

python脚本打开Excel工作簿,并更改第一个工作表的名称并执行存储过程