INNER CODE UNIT · Python
__init__
annoviko/pyclustering · pyclustering/cluster/__init__.py:459
def __init__(self, number_canvases=1, size_row=1, titles=None):
"""!
@brief Constructor of cluster visualizer.
@param[in] number_canvases (uint): Number of canvases that is used for visualization.
@param[in] size_row (uint): Amount of canvases that can be placed in one row.
@param[in] titles (list): List of canvas's titles.
Example:
@code
# load 2D data sample
sample_2d = read_sample(SIMPLE_SAMPLES.SAMPLE_SIMPLE1);
# load 3D data sample
sample_3d = read_sample(FCPS_SAMPLES.SAMPLE_HEPTA);
# extract clusters from the first sample using DBSCAN algorithm
dbscan_instance = dbscan(sample_2d, 0.4, 2, False);