Skip to content

Commit

Permalink
suggest name change
Browse files Browse the repository at this point in the history
  • Loading branch information
zslade committed Jan 9, 2024
1 parent 9a8597f commit 435b07c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions splink/cluster_studio.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def _get_random_cluster_ids(


def _get_cluster_id_of_each_size(
linker: "Linker", connected_components: SplinkDataFrame, rows_per_cluster: int
linker: "Linker", connected_components: SplinkDataFrame, rows_per_partition: int
):
sql = f"""
select
Expand Down Expand Up @@ -218,7 +218,7 @@ def _get_cluster_id_of_each_size(
cluster_id,
cluster_size
from __splink__cluster_count_row_numbered
where row_num <= {rows_per_cluster}
where row_num <= {rows_per_partition}
"""

linker._enqueue_sql(sql, "__splink__cluster_count_row_numbered")
Expand Down

0 comments on commit 435b07c

Please sign in to comment.