Loading...

verticapy.sql.functions.edit_distance

verticapy.sql.functions.edit_distance(expr1: Annotated[str | list[str] | StringSQL | list[StringSQL], ''], expr2: Annotated[str | list[str] | StringSQL | list[StringSQL], '']) StringSQL

Calculates and returns the Levenshtein distance between two strings.

Parameters

expr1: SQLExpression

Expression.

expr2: SQLExpression

Expression.

Returns

StringSQL

SQL string.

Examples

First, let’s import the vDataFrame in order to create a dummy dataset.

from verticapy import vDataFrame

Now, let’s import the VerticaPy SQL functions.

import verticapy.sql.functions as vpf

We can now build a dummy dataset.

df = vDataFrame({"x": ["hello", "apple", "heroes", "allo"]})

Now, let’s go ahead and apply the function.

df["edit_distance_x"] = vpf.edit_distance(df["x"], 'heyllow')
display(df)
Abc
x
Varchar(6)
100%
123
edit_distance_x
Integer
100%
1hello2
2apple6
3heroes5
4allo4

Note

It’s crucial to utilize VerticaPy SQL functions in coding, as they can be updated over time with new syntax. While SQL functions typically remain stable, they may vary across platforms or versions. VerticaPy effectively manages these changes, a task not achievable with pure SQL.

See also

vDataFrame.eval() : Evaluates the expression.