Skip to content

Commit

Permalink
Add omitted linkage parameter (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
liuzj039 authored Dec 13, 2023
1 parent 49bfbe3 commit 00132cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion marsilea/_deform.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ def cluster_col(self):
self.col_chunk_index = np.arange(len(dens))
self.col_reorder_index = [d.reorder_index for d in dens]
else:
dg = Dendrogram(col_data.T, **self.col_cluster_kws)
dg = Dendrogram(col_data.T, linkage=self.col_linkage, **self.col_cluster_kws)
self.col_reorder_index = dg.reorder_index
self.col_dendrogram = dg

Expand Down

0 comments on commit 00132cb

Please sign in to comment.