Causality Analyzer
    Preparing search index...

    ColumnarTable — column-oriented data table optimized for time-series and metric data.

    Type Parameters

    Index
    • Retrieve a column by name as a Float64Array (zero-copy reference).

      Type Parameters

      • K extends string

      Parameters

      • name: K

      Returns Float64Array

      If the column name does not exist in the schema

    • Return a zero-copy slice view of rows [start, end). The returned ColumnarTable shares the underlying Float64Array buffers with the original — no data is copied.

      Parameters

      • start: number
      • end: number

      Returns ColumnarTable<S>

    • Create a ColumnarTable from a map of column name → Float64Array. All arrays must have the same length. Zero-copy — arrays are stored by reference.

      Type Parameters

      Parameters

      • columns: Record<string, Float64Array>

      Returns ColumnarTable<S>

      If arrays have different lengths