From 9c579cb52f40f676702913092e9075522ebee2c4 Mon Sep 17 00:00:00 2001 From: Leland McInnes Date: Tue, 1 Dec 2015 21:53:13 -0500 Subject: [PATCH] Minor correction to plotting --- hdbscan/plots.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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([])