Member Junction
    Preparing search index...

    Options that shape the weighting / pruning of the produced cloud.

    interface TagCloudOptions {
        CoOccurrenceBlend?: number;
        IncludeCoOccurrence?: boolean;
        Limit?: number;
        MinWeight?: number;
    }
    Index

    Properties

    CoOccurrenceBlend?: number

    Blend factor in [0, 1] for co-occurrence when IncludeCoOccurrence is true: weight = (1 - f) * freqNorm + f * coOccNorm. Defaults to 0.5. Ignored when IncludeCoOccurrence is false.

    IncludeCoOccurrence?: boolean

    When true, blend co-occurrence "connectedness" (from TagCoOccurrenceEngine) into the weight so well-connected tags are boosted relative to a pure-frequency weighting. Defaults to false (frequency-only). See TagCloudEngine.GetTagCloud for the formula.

    Limit?: number

    Cap on the number of items returned (top-N by weight). Applied after min-weight filtering. When omitted or <= 0, all qualifying items return.

    MinWeight?: number

    Minimum normalized weight (0.0 - 1.0) an item must reach to be included. Defaults to 0 (no threshold). Items below this are dropped.