INNER CODE UNIT · Python

append_cluster_attribute

annoviko/pyclustering · pyclustering/cluster/__init__.py:570

    def append_cluster_attribute(self, index_canvas, index_cluster, data, marker=None, markersize=None):
        """!
        @brief Append cluster attribure for cluster on specific canvas.
        @details Attribute it is data that is visualized for specific cluster using its color, marker and markersize if last two is not specified.
        
        @param[in] index_canvas (uint): Index canvas where cluster is located.
        @param[in] index_cluster (uint): Index cluster whose attribute should be added.
        @param[in] data (array_like): List of points (data) that represents attribute.
        @param[in] marker (string): Marker that is used for displaying objects from cluster on the canvas.
        @param[in] markersize (uint): Size of marker.

        """
        
        cluster_descr = self.__canvas_clusters[index_canvas][index_cluster]
        attribute_marker = marker
        if attribute_marker is None:
            attribute_marker = cluster_descr.marker
        

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…