JoinOptions
Defined in: js-api/src/dataframe/types.ts:34
Options of DataFrame.join.
Properties
| Property | Type | Description | Defined in |
|---|---|---|---|
columns? | string[] | null | Columns to take from this table: null for all, [] for none. | js-api/src/dataframe/types.ts:40 |
columns2? | string[] | null | Columns to take from the other table: null for all, [] for none. | js-api/src/dataframe/types.ts:42 |
inPlace? | boolean | Merge into this table instead of creating a new one. | js-api/src/dataframe/types.ts:46 |
keys | string[] | Key column names in this table. | js-api/src/dataframe/types.ts:36 |
keys2? | string[] | Key column names in the other table; same as [keys] when omitted. | js-api/src/dataframe/types.ts:38 |
type? | "left" | "right" | "inner" | "outer" | Inner (default), left, right or outer. | js-api/src/dataframe/types.ts:44 |