A nested list of Cluster and Vector objects, returned from hierarchical() clustering.
(self, *args, **kwargs)
| 1561 | class Cluster(list): |
| 1562 | |
| 1563 | def __init__(self, *args, **kwargs): |
| 1564 | """ A nested list of Cluster and Vector objects, |
| 1565 | returned from hierarchical() clustering. |
| 1566 | """ |
| 1567 | list.__init__(self, *args, **kwargs) |
| 1568 | |
| 1569 | @property |
| 1570 | def depth(self): |