@willwade/aac-processors
    Preparing search index...

    Interface DiversityResult

    interface DiversityResult {
        mean: number | null;
        median: number | null;
        nWindows: number;
        unavailable?: string;
        windowSize: number;
    }
    Index

    Properties

    mean: number | null
    median: number | null

    Median of the per-window values (the headline figure, per the paper).

    nWindows: number

    Number of windows that contributed a value (after any skipping).

    unavailable?: string

    Present when the measure could not be computed (e.g. missing language data).

    windowSize: number

    The window size used.