This is documentation for an old release of SciPy (version 0.17.0). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.spatial.distance.sokalmichener¶
- scipy.spatial.distance.sokalmichener(u, v)[source]¶
Computes the Sokal-Michener dissimilarity between two boolean 1-D arrays.
The Sokal-Michener dissimilarity between boolean 1-D arrays u and v, is defined as
RS+Rwhere cij is the number of occurrences of u[k]=i and v[k]=j for k<n, R=2∗(cTF+cFT) and S=cFF+cTT.
Parameters: u : (N,) array_like, bool
Input array.
v : (N,) array_like, bool
Input array.
Returns: sokalmichener : double
The Sokal-Michener dissimilarity between vectors u and v.