Databricks SDK for JavaScript
    Preparing search index...

    Interface ApproxPercentileFunction

    Computes the approximate percentile of values.

    interface ApproxPercentileFunction {
        accuracy?: bigint;
        input?: string;
        percentile?: number;
    }
    Index

    Properties

    accuracy?: bigint

    The accuracy parameter (higher is more accurate but slower).

    input?: string

    The input column from which the approximate percentile is computed.

    percentile?: number

    The percentile value to compute (between 0 and 1).