diff --git a/hdbscan/plots.py b/hdbscan/plots.py index fbcf1e1c..7b1ec748 100644 --- a/hdbscan/plots.py +++ b/hdbscan/plots.py @@ -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([])