pyclustering  0.10.1
pyclustring is a Python, C++ data mining library.
pyclustering.cluster.cure.cure_cluster Class Reference

Represents data cluster in CURE term. More...

Public Member Functions

def __init__ (self, point, index)
 Constructor of CURE cluster. More...
 
def __repr__ (self)
 Displays distance to closest cluster and points that are contained by current cluster.
 

Public Attributes

 points
 List of points that make up cluster.
 
 indexes
 Point indexes in dataset.
 
 mean
 Mean of points that make up cluster.
 
 rep
 List of points that represents clusters.
 
 closest
 Pointer to the closest cluster.
 
 distance
 Distance to the closest cluster.
 

Detailed Description

Represents data cluster in CURE term.

CURE cluster is described by points of cluster, representation points of the cluster and by the cluster center.

Definition at line 26 of file cure.py.

Constructor & Destructor Documentation

◆ __init__()

def pyclustering.cluster.cure.cure_cluster.__init__ (   self,
  point,
  index 
)

Constructor of CURE cluster.

Parameters
[in]point(list): Point represented by list of coordinates.
[in]index(uint): Index point in dataset.

Definition at line 33 of file cure.py.


The documentation for this class was generated from the following file: