[docs]classClusteringMethodReport(Report,ABC):""" Clustering method reports show some features or statistics about the clustering method. """DOCS_TITLE="Clustering method reports"def__init__(self,result_path:Path=None,name:str=None,clustering_item:ClusteringItem=None):super().__init__(name=name,result_path=result_path)self.item=clustering_item