Welcome to dask-distance’s documentation!¶
Contents:
dask-distance¶
Distance computations with Dask (akin to scipy.spatial.distance)
- Free software: BSD 3-Clause
- Documentation: https://dask-distance.readthedocs.io.
Features¶
- TODO
Credits¶
This package was created with Cookiecutter and the dask-image/dask-image-cookiecutter project template.
Installation¶
Stable release¶
To install dask-distance, run this command in your terminal:
$ pip install dask-distance
This is the preferred method to install dask-distance, as it will always install the most recent stable release.
If you don’t have pip installed, this Python installation guide can guide you through the process.
From sources¶
The sources for dask-distance can be downloaded from the Github repo.
You can either clone the public repository:
$ git clone git://github.com/jakirkham/dask-distance
Or download the tarball:
$ curl -OL https://github.com/jakirkham/dask-distance/tarball/master
Once you have a copy of the source, you can install it with:
$ python setup.py install
API¶
dask_distance package¶
-
dask_distance.
braycurtis
(u, v)[source]¶ Finds the Bray-Curtis distance between two 1-D arrays.
\[\frac{ \sum_{i} \lvert u_{i} - v_{i} \rvert } { \sum_{i} \lvert u_{i} + v_{i} \rvert }\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
Returns: Bray-Curtis distance
Return type: float
-
dask_distance.
canberra
(u, v)[source]¶ Finds the Canberra distance between two 1-D arrays.
\[\sum_{i} \frac{ \lvert u_{i} - v_{i} \rvert } { \lvert u_{i} \rvert + \lvert v_{i} \rvert }\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
Returns: Canberra distance
Return type: float
-
dask_distance.
cdist
(XA, XB, metric=u'euclidean', **kwargs)[source]¶ Finds the distance matrix using the metric on each pair of points.
Parameters: - XA – 2-D array of points
- XB – 2-D array of points
- metric – string or callable
- **kwargs – provided to the metric (see below)
Keyword Arguments: - p – p-norm for minkowski only (default: 2)
- V – 1-D array of variances for seuclidean only (default: estimated from XA and XB)
- VI – Inverse of the covariance matrix for mahalanobis only (default: estimated from XA and XB)
- w – 1-D array of weights for wminkowski only (required)
Returns: distance between each combination of points
Return type: array
-
dask_distance.
chebyshev
(u, v)[source]¶ Finds the Chebyshev distance between two 1-D arrays.
\[\max_{i} \lvert u_{i} - v_{i} \rvert\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
Returns: Chebyshev distance
Return type: float
-
dask_distance.
cityblock
(u, v)[source]¶ Finds the City Block (Manhattan) distance between two 1-D arrays.
\[\sum_{i} \lvert u_{i} - v_{i} \rvert\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
Returns: City Block (Manhattan) distance
Return type: float
-
dask_distance.
correlation
(u, v)[source]¶ Finds the correlation distance between two 1-D arrays.
\[1 - \frac{ (u - \bar{u}) \cdot (v - \bar{v}) } { \lVert u - \bar{u} \rVert_{2} \lVert v - \bar{v} \rVert_{2} }\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
Returns: correlation distance
Return type: float
-
dask_distance.
cosine
(u, v)[source]¶ Finds the Cosine distance between two 1-D arrays.
\[1 - \frac{ u \cdot v } { \lVert u \rVert_{2} \lVert v \rVert_{2} }\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
Returns: Cosine distance
Return type: float
-
dask_distance.
dice
(u, v)[source]¶ Finds the Dice dissimilarity between two 1-D bool arrays.
\[\frac{ c_{TF} + c_{FT} }{ 2 \cdot c_{TT} + c_{TF} + c_{FT} }\]where \(c_{XY} = \sum_{i} \delta_{u_{i} X} \delta_{v_{i} Y}\)
Parameters: - u – 1-D bool array or collection of 1-D bool arrays
- v – 1-D bool array or collection of 1-D bool arrays
Returns: Dice dissimilarity
Return type: float
-
dask_distance.
euclidean
(u, v)[source]¶ Finds the Euclidean distance between two 1-D arrays.
\[\lVert u - v \rVert_{2}\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
Returns: Euclidean distance
Return type: float
-
dask_distance.
hamming
(u, v)[source]¶ Finds the Hamming distance between two 1-D bool arrays.
\[\frac{ c_{TF} + c_{FT} }{ c_{TT} + c_{TF} + c_{FT} + c_{FF} }\]where \(c_{XY} = \sum_{i} \delta_{u_{i} X} \delta_{v_{i} Y}\)
Parameters: - u – 1-D bool array or collection of 1-D bool arrays
- v – 1-D bool array or collection of 1-D bool arrays
Returns: Hamming distance
Return type: float
-
dask_distance.
jaccard
(u, v)[source]¶ Finds the Jaccard-Needham dissimilarity between two 1-D bool arrays.
\[\frac{ c_{TF} + c_{FT} }{ c_{TT} + c_{TF} + c_{FT} }\]where \(c_{XY} = \sum_{i} \delta_{u_{i} X} \delta_{v_{i} Y}\)
Parameters: - u – 1-D bool array or collection of 1-D bool arrays
- v – 1-D bool array or collection of 1-D bool arrays
Returns: Jaccard-Needham dissimilarity
Return type: float
-
dask_distance.
kulsinski
(u, v)[source]¶ Finds the Kulsinski dissimilarity between two 1-D bool arrays.
\[\frac{ 2 \cdot \left(c_{TF} + c_{FT}\right) + c_{FF} } { c_{TT} + 2 \cdot \left(c_{TF} + c_{FT}\right) + c_{FF} }\]where \(c_{XY} = \sum_{i} \delta_{u_{i} X} \delta_{v_{i} Y}\)
Parameters: - u – 1-D bool array or collection of 1-D bool arrays
- v – 1-D bool array or collection of 1-D bool arrays
Returns: Kulsinski dissimilarity
Return type: float
-
dask_distance.
mahalanobis
(u, v, VI)[source]¶ Finds the Mahalanobis distance between two 1-D arrays.
\[\sqrt{ (u - v) \cdot V^{-1} \cdot (u - v)^{T} }\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
- VI – Inverse of the covariance matrix
Returns: Mahalanobis distance
Return type: float
-
dask_distance.
minkowski
(u, v, p)[source]¶ Finds the Minkowski distance between two 1-D arrays.
\[\left( \sum_{i} \lvert u_{i} - v_{i} \rvert^{p} \right)^{\frac{1}{p}}\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
- p – degree of the norm to use
Returns: Minkowski distance
Return type: float
-
dask_distance.
pdist
(X, metric=u'euclidean', **kwargs)[source]¶ Finds the pairwise condensed distance matrix using the metric.
Parameters: - X – 2-D array of points
- metric – string or callable
- **kwargs – provided to the metric (see below)
Keyword Arguments: - p – p-norm for minkowski only (default: 2)
- V – 1-D array of variances for seuclidean only (default: estimated from X)
- VI – Inverse of the covariance matrix for mahalanobis only (default: estimated from X)
- w – 1-D array of weights for wminkowski only (required)
Returns: condensed distance between each pair
Return type: array
Note
Tries to avoid redundant computations as much as possible. However this is limited in its ability to do this based on the chunk size of X (particularly along the first dimension). Smaller chunks will increase savings though there may be other tradeoffs.
-
dask_distance.
rogerstanimoto
(u, v)[source]¶ Finds the Rogers-Tanimoto dissimilarity between two 1-D bool arrays.
\[\frac{ 2 \cdot \left(c_{TF} + c_{FT}\right) } { c_{TT} + 2 \cdot \left(c_{TF} + c_{FT}\right) + c_{FF} }\]where \(c_{XY} = \sum_{i} \delta_{u_{i} X} \delta_{v_{i} Y}\)
Parameters: - u – 1-D bool array or collection of 1-D bool arrays
- v – 1-D bool array or collection of 1-D bool arrays
Returns: Rogers-Tanimoto dissimilarity
Return type: float
-
dask_distance.
russellrao
(u, v)[source]¶ Finds the Russell-Rao dissimilarity between two 1-D bool arrays.
\[\frac{ c_{TF} + c_{FT} + c_{FF} } { c_{TT} + c_{TF} + c_{FT} + c_{FF} }\]where \(c_{XY} = \sum_{i} \delta_{u_{i} X} \delta_{v_{i} Y}\)
Parameters: - u – 1-D bool array or collection of 1-D bool arrays
- v – 1-D bool array or collection of 1-D bool arrays
Returns: Russell-Rao dissimilarity
Return type: float
-
dask_distance.
seuclidean
(u, v, V)[source]¶ Finds the standardized Euclidean distance between two 1-D arrays.
\[\sqrt{\sum_{i} \left( \frac{\left( u_{i} - v_{i} \right)^{2}}{V_{i}} \right)}\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
- V – 1-D array of variances
Returns: standardized Euclidean
Return type: float
-
dask_distance.
sokalmichener
(u, v)[source]¶ Finds the Sokal-Michener dissimilarity between two 1-D bool arrays.
\[\frac{ 2 \cdot \left(c_{TF} + c_{FT}\right) } { c_{TT} + 2 \cdot \left(c_{TF} + c_{FT}\right) + c_{FF} }\]where \(c_{XY} = \sum_{i} \delta_{u_{i} X} \delta_{v_{i} Y}\)
Parameters: - u – 1-D bool array or collection of 1-D bool arrays
- v – 1-D bool array or collection of 1-D bool arrays
Returns: Sokal-Michener dissimilarity
Return type: float
-
dask_distance.
sokalsneath
(u, v)[source]¶ Finds the Sokal-Sneath dissimilarity between two 1-D bool arrays.
\[\frac{ 2 \cdot \left(c_{TF} + c_{FT}\right) } { c_{TT} + 2 \cdot \left(c_{TF} + c_{FT}\right) }\]where \(c_{XY} = \sum_{i} \delta_{u_{i} X} \delta_{v_{i} Y}\)
Parameters: - u – 1-D bool array or collection of 1-D bool arrays
- v – 1-D bool array or collection of 1-D bool arrays
Returns: Sokal-Sneath dissimilarity
Return type: float
-
dask_distance.
sqeuclidean
(u, v)[source]¶ Finds the squared Euclidean distance between two 1-D arrays.
\[\lVert u - v \rVert_{2}^{2}\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
Returns: squared Euclidean distance
Return type: float
-
dask_distance.
squareform
(X, force=u'no')[source]¶ Converts between dense and sparse distance matrices
Parameters: - X – 2-D square symmetric matrix or 1-D vector of distances
- force – whether to force to a vector or a matrix
Returns: 1-D vector or 2-D square symmetric matrix of distances
Return type: array
-
dask_distance.
wminkowski
(u, v, p, w)[source]¶ Finds the weighted Minkowski distance between two 1-D arrays.
\[\left( \sum_{i} \lvert w_{i} \cdot (u_{i} - v_{i}) \rvert^{p} \right)^{ \frac{1}{p} }\]Parameters: - u – 1-D array or collection of 1-D arrays
- v – 1-D array or collection of 1-D arrays
- p – degree of the norm to use
- w – 1-D array of weights
Returns: Minkowski distance
Return type: float
-
dask_distance.
yule
(u, v)[source]¶ Finds the Yule dissimilarity between two 1-D bool arrays.
\[\frac{ 2 \cdot c_{TF} \cdot c_{FT} } { c_{TT} \cdot c_{FF} + c_{TF} \cdot c_{FT} }\]where \(c_{XY} = \sum_{i} \delta_{u_{i} X} \delta_{v_{i} Y}\)
Parameters: - u – 1-D bool array or collection of 1-D bool arrays
- v – 1-D bool array or collection of 1-D bool arrays
Returns: Yule dissimilarity
Return type: float
Contributing¶
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Types of Contributions¶
Report Bugs¶
Report bugs at https://github.com/jakirkham/dask-distance/issues.
If you are reporting a bug, please include:
- Your operating system name and version.
- Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug.
Fix Bugs¶
Look through the GitHub issues for bugs. Anything tagged with “bug” and “help wanted” is open to whoever wants to implement it.
Implement Features¶
Look through the GitHub issues for features. Anything tagged with “enhancement” and “help wanted” is open to whoever wants to implement it.
Write Documentation¶
dask-distance could always use more documentation, whether as part of the official dask-distance docs, in docstrings, or even on the web in blog posts, articles, and such.
Submit Feedback¶
The best way to send feedback is to file an issue at https://github.com/jakirkham/dask-distance/issues.
If you are proposing a feature:
- Explain in detail how it would work.
- Keep the scope as narrow as possible, to make it easier to implement.
- Remember that this is a volunteer-driven project, and that contributions are welcome :)
Get Started!¶
Ready to contribute? Here’s how to set up dask-distance for local development.
Fork the dask-distance repo on GitHub.
Clone your fork locally:
$ git clone git@github.com:your_name_here/dask-distance.git
Install your local copy into an environment. Assuming you have conda installed, this is how you set up your fork for local development (on Windows drop source). Replace “<some version>” with the Python version used for testing.:
$ conda create -n dask-distanceenv python="<some version>" $ source activate dask-distanceenv $ python setup.py develop
Create a branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
When you’re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions:
$ flake8 dask_distance tests $ python setup.py test or py.test
To get flake8, just conda install it into your environment.
Commit your changes and push your branch to GitHub:
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature
Submit a pull request through the GitHub website.
Pull Request Guidelines¶
Before you submit a pull request, check that it meets these guidelines:
- The pull request should include tests.
- If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst.
- The pull request should work for Python 2.7, 3.4, 3.5, and 3.6. Check https://travis-ci.org/jakirkham/dask-distance/pull_requests and make sure that the tests pass for all supported Python versions.
Credits¶
Development Lead¶
- John Kirkham, Howard Hughes Medical Institute <kirkhamj@janelia.hhmi.org>
Contributors¶
None yet. Why not be the first?