Member Junction
    Preparing search index...

    Fully-parsed result of a RunClusterAnalysis mutation.

    The transport helper parses the JSON-string fields (MetricsJSON / ClustersJSON / PointsJSON) returned by the server back into the typed Metrics / Clusters / Points properties so consumers never deal with raw JSON strings.

    interface RunClusterAnalysisResult {
        AnalysisID?: string;
        Clusters: ClusterAnalysisInfo[];
        ErrorMessage?: string;
        Metrics: ClusterAnalysisMetrics;
        Points: ClusterAnalysisPoint[];
        Success: boolean;
    }
    Index

    Properties

    AnalysisID?: string

    The persisted MJ: Cluster Analysis ID when a PersistName was supplied.

    Parsed cluster summaries.

    ErrorMessage?: string

    Error message when Success is false.

    Parsed quality + performance metrics.

    Parsed projected points (can be large).

    Success: boolean

    Whether the analysis succeeded.