Go to file
matthieugomez c883a6a5ba add tests 2015-10-24 20:35:40 -04:00
benchmark default constructor 2015-10-24 08:59:44 -04:00
src add tests 2015-10-24 20:35:40 -04:00
test add tests 2015-10-24 20:35:40 -04:00
.travis.yml first commit 2015-10-22 12:12:44 -04:00
LICENSE.md first commit 2015-10-22 12:12:44 -04:00
README.md add tests 2015-10-24 20:35:40 -04:00
REQUIRE first commit 2015-10-22 12:12:44 -04:00

README.md

Build Status Coverage Status

StringDistances

  • Hamming Distance
  • Jaro-Winkler Distance
  • Levenshtein Distance
  • Damerau-Levenshtein Distance
  • Qgram Distance
  • Cosine Distance
  • Jaccard Distance

Should work with ASCII, UTF-8 and Unicode

Syntax

There are two possible syntaxes for any distance:

using StringDistances
evaluate(Jaccard(2), "martha", "marhta")
jaccard("martha", "marhta"; q = 2)