Skip to content

Commit

Permalink
Minor correction to plotting
Browse files Browse the repository at this point in the history
  • Loading branch information
lmcinnes committed Dec 2, 2015
1 parent e8a8ae5 commit 9c579cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hdbscan/plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ def plot(self, axis=None, node_size=10, node_color='k',
line_collection.set_array(self._mst[:, 2].T)

axis.add_artist(line_collection)
axis.scatter(projection.T[0], projection.T[1], c=node_color, alpha=node_alpha)
axis.scatter(projection.T[0], projection.T[1], c=node_color, alpha=node_alpha, s=node_size)
axis.set_xticks([])
axis.set_yticks([])

Expand Down

0 comments on commit 9c579cb

Please sign in to comment.