@perspective-dev/client
    Preparing search index...

    Options for with_typed_arrays, extending ViewWindow with typed-array-specific options.

    type TypedArrayWindow = {
        compression?: string;
        emit_legacy_row_path_names?: boolean;
        end_col?: number;
        end_row?: number;
        float32: boolean;
        formatted?: boolean;
        id?: boolean;
        index?: boolean;
        start_col?: number;
        start_row?: number;
    }
    Index

    Properties

    compression?: string

    Only impacts [View::to_arrow]

    emit_legacy_row_path_names?: boolean

    When true, group-by columns use legacy "colname (Group by N)" naming. When false, they use __ROW_PATH_N__ naming consistent with the SQL backend. Defaults to true for backwards compatibility.

    end_col?: number
    end_row?: number
    float32: boolean

    When true, Float64/Date32/Timestamp columns are output as Float32Array instead of Float64Array.

    formatted?: boolean

    Only impacts [View::to_csv]

    id?: boolean
    index?: boolean
    start_col?: number
    start_row?: number