Skip to content

Commit

Permalink
Update funs.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Polkas authored Oct 4, 2023
1 parent 211bfd6 commit 6684a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/multidim/funs.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def plot_dendrogram(model: Any, **kwargs: Optional[Any]) -> None:
current_count += counts[child_idx - n_samples]
counts[i] = current_count

linkage_matrix = np.column_stack(
linkage_matrix: np.ndarray = np.column_stack(
[model.children_, model.distances_, counts]
).astype(float)

Expand Down

0 comments on commit 6684a1e

Please sign in to comment.