Skip to content

Commit

Permalink
update notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinL committed May 16, 2024
1 parent 062b0f0 commit 4861c7e
Show file tree
Hide file tree
Showing 6 changed files with 174 additions and 210 deletions.
1 change: 0 additions & 1 deletion docs/demos/examples/duckdb/deduplicate_50k_synthetic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,6 @@
" blocking_rule_creators=blocking_rules,\n",
" db_api=db_api,\n",
" link_type=\"dedupe_only\",\n",
" unique_id_column_name=\"unique_id\",\n",
")"
]
},
Expand Down
1 change: 0 additions & 1 deletion docs/demos/examples/duckdb/deterministic_dedupe.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,6 @@
" ],\n",
" db_api=db_api,\n",
" link_type=\"dedupe_only\",\n",
" unique_id_column_name=\"unique_id\",\n",
")"
]
},
Expand Down
301 changes: 132 additions & 169 deletions docs/demos/examples/duckdb/transactions.ipynb

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions docs/demos/examples/sqlite/deduplicate_50k_synthetic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -270,8 +270,7 @@
" table_or_tables=df,\n",
" blocking_rule_creators=blocking_rules,\n",
" db_api=db_api,\n",
" link_type=\"dedupe_only\",\n",
" unique_id_column_name=\"unique_id\",\n",
" link_type=\"dedupe_only\"\n",
")"
]
},
Expand Down
76 changes: 40 additions & 36 deletions docs/demos/tutorials/03_Blocking.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion splink/internals/blocking_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,7 @@ def cumulative_comparisons_to_be_scored_from_blocking_rules_chart(
blocking_rule_creators: Iterable[Union[BlockingRuleCreator, str, Dict[str, Any]]],
link_type: user_input_link_type_options,
db_api: DatabaseAPISubClass,
unique_id_column_name: str,
unique_id_column_name: str = "unique_id",
max_rows_limit: int = int(1e9),
source_dataset_column_name: Optional[str] = None,
) -> ChartReturnType:
Expand Down

0 comments on commit 4861c7e

Please sign in to comment.