ClusTree#

class capymoa.clusterers.ClusTree[source]#

Bases: MOAClusterer

ClusTree clustering algorithm without Macro-clustering.

__init__(
schema: Schema | None = None,
horizon: int = 1000,
max_height: int = 8,
breadth_first_strategy: bool = False,
)[source]#

Clustream clusterer.

Parameters:
  • schema – The schema of the stream

  • horizon – The size of the time window

  • max_height – The maximum height of the tree

  • breadth_first_strategy – Whether to use breadth-first strategy

implements_micro_clusters() bool[source]#
implements_macro_clusters() bool[source]#
CLI_help()[source]#
get_clustering_result()[source]#
get_micro_clustering_result()[source]#
train(instance)[source]#