Skip to content

Commit 9c579cb

Browse files
committed
Minor correction to plotting
1 parent e8a8ae5 commit 9c579cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hdbscan/plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ def plot(self, axis=None, node_size=10, node_color='k',
663663
line_collection.set_array(self._mst[:, 2].T)
664664

665665
axis.add_artist(line_collection)
666-
axis.scatter(projection.T[0], projection.T[1], c=node_color, alpha=node_alpha)
666+
axis.scatter(projection.T[0], projection.T[1], c=node_color, alpha=node_alpha, s=node_size)
667667
axis.set_xticks([])
668668
axis.set_yticks([])
669669

0 commit comments

Comments
 (0)