nodejs-polars
    Preparing search index...

    Type Alias SameNameColumnJoinOptions<L, R>

    options for same named column join

    type SameNameColumnJoinOptions<
        L extends string = string,
        R extends string = string,
    > = {
        how?: Exclude<JoinType, "cross">;
        on: ValueOrArray<L & R>;
        suffix?: string;
    }

    Type Parameters

    • L extends string = string
    • R extends string = string
    Index

    Properties

    Properties

    how?: Exclude<JoinType, "cross">

    Join strategy

    on: ValueOrArray<L & R>

    Name(s) of the join columns in both DataFrames.

    suffix?: string

    Suffix to append to columns with a duplicate name.