Member Junction
    Preparing search index...

    A single point in the 2D scatter plot.

    Each point corresponds to one vectorized entity record after dimensionality reduction (UMAP or PCA).

    interface ClusterPoint {
        ClusterId: number;
        Label: string;
        Metadata: Record<string, unknown>;
        VectorKey: string;
        X: number;
        Y: number;
        Z?: number;
    }
    Index

    Properties

    ClusterId: number

    Cluster assignment ID (-1 for outliers / noise).

    Label: string

    Display label for this point (typically the entity record identifier).

    Metadata: Record<string, unknown>

    Arbitrary metadata surfaced in tooltips and click handlers.

    VectorKey: string

    Original vector key (e.g., entity record ID).

    X: number

    X coordinate in projected space.

    Y: number

    Y coordinate in projected space.

    Z?: number

    Z coordinate in projected space (only present for 3D projections).