Dataframe
 
0.15

join

Edit page Last modified: 14 January 2025

Joins two DataFrame object by join columns.

joinColumns is a column selector that defines column mapping for join:

df.join(other) { name match right.fullName }

If mapped columns have the same name, just select join columns from the left DataFrame:

df.join(other) { name and city }

If joinColumns is not specified, columns with the same name from both DataFrame objects will be used as join columns: