Functions.Levenshtein(Column, Column) Method

Definition

Computes the Levenshtein distance of the two given string columns.

public static Microsoft.Spark.Sql.Column Levenshtein (Microsoft.Spark.Sql.Column left, Microsoft.Spark.Sql.Column right);
static member Levenshtein : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Levenshtein (left As Column, right As Column) As Column

Parameters

left
Column

Left side column to apply

right
Column

Right side column to apply

Returns

Column object

Applies to