作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在用 scipy 计算成对距离,并且试图获取到两个最近邻居的距离。我当前的工作解决方案是:
dists = squareform(pdist(xs.todense()))
dists = np.sort(dists, axis=1)[:, 1:3]
但是,方形方法在空间上非常昂贵,并且在我的情况下有些多余。我只需要两个最近的距离,而不是全部。有没有简单的解决方法?
谢谢!
最佳答案
线性索引和上三角距离矩阵的 (i, j) 之间的关系不是直接或容易可逆的(参见 squareform doc 中的注释 2)。
但是,通过循环所有索引,可以获得逆关系:
import numpy as np
import matplotlib.pyplot as plt
from scipy.spatial.distance import pdist
def inverse_condensed_indices(idx, n):
k = 0
for i in range(n):
for j in range(i+1, n):
if k == idx:
return (i, j)
k +=1
else:
return None
# test
points = np.random.rand(8, 2)
distances = pdist(points)
sorted_idx = np.argsort(distances)
n = points.shape[0]
ij = [inverse_condensed_indices(idx, n)
for idx in sorted_idx[:2]]
# graph
plt.figure(figsize=(5, 5))
for i, j in ij:
x = [points[i, 0], points[j, 0]]
y = [points[i, 1], points[j, 1]]
plt.plot(x, y, '-', color='red');
plt.plot(points[:, 0], points[:, 1], '.', color='black');
plt.xlim(0, 1); plt.ylim(0, 1);
它似乎比使用 squareform
快一点:
%timeit squareform(range(28))
# 9.23 µs ± 63 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each)
%timeit inverse_condensed_indices(27, 8)
# 2.38 µs ± 25 ns per loop (mean ± std. dev. of 7 runs, 100000 loops each)
关于python - scipy pdist 只得到两个最近的邻居,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59969435/
我是一名优秀的程序员,十分优秀!