MAIDR Documentation - v3.58.2
    Preparing search index...

    Interface ViolinKdePoint

    Data point for violin KDE (kernel density estimation) curves. Library-agnostic — no SVG coordinates embedded in data. The density field falls back to width if absent.

    interface ViolinKdePoint {
        x: string | number;
        y: number;
        density?: number;
        width?: number;
        svg_x?: number;
        svg_y?: number;
    }
    Index

    Properties

    x: string | number

    Categorical label for the violin (e.g., "setosa")

    y: number

    Position along the density axis

    density?: number

    KDE density value at this point. Falls back to width if absent.

    width?: number

    Half-width of the violin at this Y level (used as density fallback)

    svg_x?: number

    SVG viewport x-coordinate for highlight positioning (provided by backend)

    svg_y?: number

    SVG viewport y-coordinate for highlight positioning (provided by backend)