Function Name | Description | Output Type | Parameters |
---|---|---|---|
Similarity.contains | Returns 1 if one of the string expressions contains the other; 0 otherwise. | Float | • String value • String Value |
Similarity.damerauLevenshtein | Returns the Damerau-Levenshtein distance between two string expressions. | Float | • String value • String Value |
Similarity.exact | Returns 1 if the two string expressions are equivalent; 0 otherwise. | Float | • String value • String Value |
Similarity.jaro | Returns the Jaro distance between two string expressions. | Float | • String value • String Value |
Similarity.jaroWinkler | Returns the Jaro-Winkler distance between two string expressions. | Float | • String value • String Value • int value • float value |
Similarity.levenshtein | Returns the Levenshtein distance between two string expressions. | Float | • String value • String Value |
Similarity.positionalQgram | Returns the percentage of q-grams in common between two string expressions. | Float | • String value • String Value • int value • int value |
Similarity.proximity | Returns the adjusted quotient of the numeric values of the string expressions. | Float | • String value • String Value |
Similarity.qgram | Returns the percentage of q-grams in common between two string expressions. | Float | • String value • String Value • int value |
Similarity.shorthand | Returns 1 if the two string expressions are shorthand equivalent; 0 otherwise. | Float | • String value • String Value |