bundles / scipy latest / scipy / spatial / distance / rogerstanimoto
function
scipy.spatial.distance:rogerstanimoto
source: /scipy/spatial/distance.py :1408
Signature
def rogerstanimoto ( u , v , w = None ) Summary
Compute the Rogers-Tanimoto dissimilarity between two boolean 1-D arrays.
Extended Summary
The Rogers-Tanimoto dissimilarity between two boolean 1-D arrays u and v, is defined as
where is the number of occurrences of and for and .
Parameters
u: (N,) array_like, boolInput array.
v: (N,) array_like, boolInput array.
w: (N,) array_like, optionalThe weights for each value in
uandv. Default is None, which gives each value a weight of 1.0
Returns
rogerstanimoto: doubleThe Rogers-Tanimoto dissimilarity between vectors
uandv.
Examples
from scipy.spatial import distance distance.rogerstanimoto([1, 0, 0], [0, 1, 0]) distance.rogerstanimoto([1, 0, 0], [1, 1, 0]) distance.rogerstanimoto([1, 0, 0], [2, 0, 0])✓
Aliases
-
scipy.spatial.distance.rogerstanimoto