We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd0570b commit afbfb1eCopy full SHA for afbfb1e
cluster/method/hierarchical.py
@@ -206,3 +206,14 @@ def getlevel(self, threshold):
206
self.cluster()
207
208
return self._data[0].getlevel(threshold)
209
+
210
+ def display(self):
211
+ """
212
+ Prints a simple dendogram-like representation of the full cluster
213
+ to the console.
214
215
+ # initialize the cluster if not yet done
216
+ if not self.__cluster_created:
217
+ self.cluster()
218
219
+ self._data[0].display()
0 commit comments