Skip to main content

JoinOptions

Defined in: js-api/src/dataframe/types.ts:34

Options of DataFrame.join.

Properties

PropertyTypeDescriptionDefined in
columns?string[] | nullColumns to take from this table: null for all, [] for none.js-api/src/dataframe/types.ts:40
columns2?string[] | nullColumns to take from the other table: null for all, [] for none.js-api/src/dataframe/types.ts:42
inPlace?booleanMerge into this table instead of creating a new one.js-api/src/dataframe/types.ts:46
keysstring[]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