Projected clusters are used for visualization in the Kura UI. The coordinates represent the cluster’s position after dimensionality reduction (typically UMAP), allowing related clusters to be positioned near each other on a 2D map.The level field indicates the cluster’s position in the meta-clustering hierarchy:
# Typical usage in visualization pipelinefrom kura.dimensionality import HDBUMAPreducer = HDBUMAP()projected_clusters = reducer.reduce(clusters, embeddings)# Each projected_cluster now has x_coord, y_coord, and levelfor cluster in projected_clusters: plot_point(cluster.x_coord, cluster.y_coord, label=cluster.name)