Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the SoundEx encoding for a string.
For the corresponding Databricks SQL function, see soundex function.
Syntax
from pyspark.databricks.sql import functions as dbf
dbf.soundex(col=<col>)
Parameters
| Parameter | Type | Description |
|---|---|---|
col |
pyspark.sql.Column or str |
target column to work on. |
Returns
pyspark.sql.Column: SoundEx encoded string.
Examples
from pyspark.databricks.sql import functions as dbf
df = spark.createDataFrame([("Peters",),("Uhrbach",)], ["s"])
df.select("*", dbf.soundex("s")).show()