scipy.spatial.distance.

rogerstanimoto#

scipy.spatial.distance.rogerstanimoto(u, v, w=None)[源代码]#

计算两个布尔型一维数组之间的 Rogers-Tanimoto 相异度。

两个布尔型一维数组 uv 之间的 Rogers-Tanimoto 相异度定义为

\[\frac{R} {c_{TT} + c_{FF} + R}\]

其中 \(c_{ij}\)\(\mathtt{u[k]} = i\)\(\mathtt{v[k]} = j\) 的出现次数,其中 \(k < n\)\(R = 2(c_{TF} + c_{FT})\)

参数:
u(N,) 类数组,布尔型

输入数组。

v(N,) 类数组,布尔型

输入数组。

w(N,) 类数组,可选

用于 uv 中每个值的权重。默认值为 None,表示每个值的权重为 1.0。

返回:
rogerstanimoto双精度浮点数

向量 uv 之间的 Rogers-Tanimoto 相异度。

示例

>>> from scipy.spatial import distance
>>> distance.rogerstanimoto([1, 0, 0], [0, 1, 0])
0.8
>>> distance.rogerstanimoto([1, 0, 0], [1, 1, 0])
0.5
>>> distance.rogerstanimoto([1, 0, 0], [2, 0, 0])
-1.0