This is documentation for an old release of SciPy (version 0.14.1). Read this page in the documentation of the latest stable release (version 1.15.1).
scipy.spatial.distance.dice¶
- scipy.spatial.distance.dice(u, v)[source]¶
Computes the Dice dissimilarity between two boolean 1-D arrays.
The Dice dissimilarity between u and v, is
where
is the number of occurrences of
and
for
.
Parameters: u : (N,) ndarray, bool
Input 1-D array.
v : (N,) ndarray, bool
Input 1-D array.
Returns: dice : double
The Dice dissimilarity between 1-D arrays u and v.