The library provides efficient implementations of various strings metric
algorithms. It works with strict Text values.
The current version of the package implements:
- Levenshtein distance
- Normalized Levenshtein distance
- Damerau-Levenshtein distance
- Normalized Damerau-Levenshtein distance
- Hamming distance
- Jaro distance
- Jaro-Winkler distance
- Overlap coefficient
- Jaccard similarity coefficient
There is
edit-distance package
whose scope overlaps with the scope of this package. The differences are:
-
edit-distanceallows to specify costs for every operation when calculating Levenshtein distance (insertion, deletion, substitution, and transposition). This is rarely needed though in real-world applications, IMO. -
edit-distanceonly provides Levenshtein distance,text-metricsaims to provide implementations of most string metrics algorithms. -
edit-distanceworks onStrings, whiletext-metricsworks on strictTextvalues.
Although we originally used C for speed, currently all functions are pure Haskell tuned for performance. See this blog post for more info.
Issues, bugs, and questions may be reported in the GitHub issue tracker for this project.
Pull requests are also welcome.
Copyright © 2016–present Mark Karpov
Distributed under BSD 3 clause license.