Skip to content

Commit

Permalink
fix more links
Browse files Browse the repository at this point in the history
  • Loading branch information
RobinL committed Jul 3, 2024
1 parent c01de13 commit 5614b98
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions docs/blog/posts/2023-07-27-feature_update.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Note: If True, the EM algorithm ignores term frequency adjustments during the it

## :gift: Out-of-the-box Comparisons

Splink now contains lots of new out-of-the-box comparisons for [dates](../../comparison_template_library.md#splink.comparison_template_library.DateComparisonBase), [names](../../comparison_template_library.md#splink.comparison_template_library.NameComparisonBase), [postcodes](../../comparison_template_library.md#splink.comparison_template_library.PostcodeComparisonBase) etc. The Comparison Template Library (CTL) provides suggested settings for common types of data used in linkage models.
Splink now contains lots of new out-of-the-box comparisons for dates, names, postcodes etc. The Comparison Template Library (CTL) provides suggested settings for common types of data used in linkage models.

For example, a Comparison for `"first_name"` can now be written as:

Expand All @@ -44,7 +44,7 @@ import splink.duckdb.comparison_template_library as ctl
first_name_comparison = ctl.name_comparison("first_name")
```

Check out these new functions in the [CTL Topic Guide](../../topic_guides/comparisons/comparison_templates.ipynb) and [CTL Documentation](../../comparison_template_library.md).
Check out these new functions in the [Topic Guide](../../topic_guides/comparisons/out_of_the_box_comparisons.ipynb) and [Documentation](../../api_docs/comparison_library.md).

## :simple-adblock: Blocking Rule Library

Expand Down
1 change: 0 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ nav:
- Managing Dependencies with Poetry: "dev_guides/changing_splink/managing_dependencies_with_poetry.md"
- Releasing a Package Version: "dev_guides/changing_splink/releases.md"
- Contributing to the Splink Blog: "dev_guides/changing_splink/blog_posts.md"

- How Splink works:
- Understanding and debugging Splink: "dev_guides/debug_modes.md"
- Transpilation using sqlglot: "dev_guides/transpilation.md"
Expand Down
3 changes: 0 additions & 3 deletions splink/internals/completeness.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,6 @@ def completeness_chart(
none, all columns will be computed. Default to None.
table_names_for_chart: A list of names. Must be the same length as
table_or_tables.
```
"""

splink_df_dict = db_api.register_multiple_tables(table_or_tables)
Expand Down
2 changes: 1 addition & 1 deletion splink/internals/linker_components/visualisations.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def match_weights_chart(self) -> ChartReturnType:
"""
return self._linker._settings_obj.match_weights_chart()

def m_u_parameters_chart(self):
def m_u_parameters_chart(self) -> ChartReturnType:
"""Display a chart of the m and u parameters of the linkage model
Examples:
Expand Down

0 comments on commit 5614b98

Please sign in to comment.