compathelper/new_version/2020-05-20-12-03-08-092-188304956
matthieugomez 2020-02-25 19:40:14 -05:00
parent 6f22f2c9f5
commit 3c0b8d2f60
3 changed files with 13 additions and 13 deletions

View File

@ -1,7 +1,7 @@
""" """
Jaro() Jaro()
Creates the Jaro metric Creates the Jaro distance
The Jaro distance is defined as The Jaro distance is defined as
@ -53,7 +53,7 @@ end
""" """
Levenshtein() Levenshtein()
Creates the Levenshtein metric Creates the Levenshtein distance
The Levenshtein distance is the minimum number of operations (consisting of insertions, deletions, The Levenshtein distance is the minimum number of operations (consisting of insertions, deletions,
substitutions of a single character) required to change one string into the other. substitutions of a single character) required to change one string into the other.
@ -98,7 +98,7 @@ end
""" """
DamerauLevenshtein() DamerauLevenshtein()
Creates the restricted DamerauLevenshtein metric Creates the restricted DamerauLevenshtein distance
The DamerauLevenshtein distance is the minimum number of operations (consisting of insertions, The DamerauLevenshtein distance is the minimum number of operations (consisting of insertions,
deletions or substitutions of a single character, or transposition of two adjacent characters) deletions or substitutions of a single character, or transposition of two adjacent characters)
@ -170,7 +170,7 @@ end
""" """
RatcliffObershelp() RatcliffObershelp()
Creates the RatcliffObershelp metric Creates the RatcliffObershelp distance
The distance between two strings is defined as one minus the number of matching characters The distance between two strings is defined as one minus the number of matching characters
divided by the total number of characters in the two strings. Matching characters are those divided by the total number of characters in the two strings. Matching characters are those

View File

@ -40,7 +40,7 @@ end
""" """
Winkler(dist; p::Real = 0.1, threshold::Real = 0.7, maxlength::Integer = 4) Winkler(dist; p::Real = 0.1, threshold::Real = 0.7, maxlength::Integer = 4)
Creates the `Winkler{dist, p, threshold, maxlength}` distance Creates the `Winkler{dist, p, threshold, maxlength}` distance.
`Winkler{dist, p, threshold, length)` modifies the string distance `dist` to decrease the `Winkler{dist, p, threshold, length)` modifies the string distance `dist` to decrease the
distance between two strings, when their original distance is below some `threshold`. distance between two strings, when their original distance is below some `threshold`.
@ -75,7 +75,7 @@ end
""" """
Partial(dist) Partial(dist)
Creates the `Partial{dist}` distance Creates the `Partial{dist}` distance.
`Partial{dist}` modifies the string distance `dist` to return the `Partial{dist}` modifies the string distance `dist` to return the
minimum distance between the shorter string and substrings of the longer string minimum distance between the shorter string and substrings of the longer string
@ -134,7 +134,7 @@ end
""" """
TokenSort(dist) TokenSort(dist)
Creates the `TokenSort{dist}` distance Creates the `TokenSort{dist}` distance.
`TokenSort{dist}` modifies the string distance `dist` to adjust for differences `TokenSort{dist}` modifies the string distance `dist` to adjust for differences
in word orders by reording words alphabetically. in word orders by reording words alphabetically.
@ -166,7 +166,7 @@ end
""" """
TokenSet(dist) TokenSet(dist)
Creates the `TokenSet{dist}` distance Creates the `TokenSet{dist}` distance.
`TokenSet{dist}` modifies the string distance `dist` to adjust for differences `TokenSet{dist}` modifies the string distance `dist` to adjust for differences
in word orders and word numbers by comparing the intersection of two strings with each string. in word orders and word numbers by comparing the intersection of two strings with each string.

View File

@ -85,7 +85,7 @@ abstract type QGramDistance <: SemiMetric end
""" """
QGram(q::Int) QGram(q::Int)
Creates a QGram metric. Creates a QGram distance.
The distance corresponds to The distance corresponds to
@ -110,7 +110,7 @@ end
""" """
Cosine(q::Int) Cosine(q::Int)
Creates a Cosine metric. Creates a Cosine distance.
The distance corresponds to The distance corresponds to
@ -137,7 +137,7 @@ end
""" """
Jaccard(q::Int) Jaccard(q::Int)
Creates a Jaccard metric. Creates a Jaccard distance.
The distance corresponds to The distance corresponds to
@ -163,7 +163,7 @@ end
""" """
SorensenDice(q::Int) SorensenDice(q::Int)
Creates a SorensenDice metric Creates a SorensenDice distance.
The distance corresponds to The distance corresponds to
@ -189,7 +189,7 @@ end
""" """
Overlap(q::Int) Overlap(q::Int)
Creates a Overlap metric Creates a Overlap distance.
The distance corresponds to The distance corresponds to