Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update ctl docs #1624

Merged
merged 2 commits into from
Oct 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions splink/comparison_template_library.py
Original file line number Diff line number Diff line change
Expand Up @@ -669,15 +669,16 @@ def __init__(
Defaults to True
phonetic_forename_col_name (str, optional): The name of the column with
phonetic reduction (such as dmetaphone) of forename_col_name. Including
parameter will create an exact match level for
phonetic_forename_col_name.
parameter along with phonetic_surname_col_name will create an exact
match level for "Full name phonetic match".
The phonetic column must be present in the dataset to use this
parameter.
Defaults to None
phonetic_surname_col_name (str, optional): The name of the column with
phonetic reduction (such as dmetaphone) of surname_col_name. Including
this parameter will create an exact match level for
phonetic_surname_col_name. The phonetic column must be present in
this parameter along with phonetic_forename_col_name will create an
exact match level for "Full name phonetic match".
The phonetic column must be present in
the dataset to use this parameter.
Defaults to None
levenshtein_thresholds (Union[int, list], optional): The thresholds
Expand Down
1 change: 0 additions & 1 deletion splink/duckdb/duckdb_helpers/duckdb_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ def size_array_intersect_sql(col_name_l, col_name_r):
)



def datediff_sql(
col_name_l,
col_name_r,
Expand Down
Loading