@leanchuck/core - v0.1.1
    Preparing search index...

    Interface ParetoItem<T>

    A single contributor after Pareto analysis.

    interface ParetoItem<T> {
        item: T;
        value: number;
        rank: number;
        cumulative: number;
        cumulativeShare: number;
        share: number;
        class: ParetoClass;
    }

    Type Parameters

    • T

      The shape of the source item.

    Index

    Properties

    item: T

    The original item.

    value: number

    The numeric value used for ranking.

    rank: number

    1-based position after sorting largest → smallest.

    cumulative: number

    Running sum of value from the largest item through this one.

    cumulativeShare: number

    ParetoItem.cumulative divided by the grand total (0–1 scale).

    share: number

    This item's own share of the grand total (0–1 scale).

    Pareto classification for this contributor.