node icon indicating copy to clipboard operation
node copied to clipboard

`df.join` should accept singleton arguments, not just iterable.

Open thomcom opened this issue 3 years ago • 0 comments

join uses forEach to join across the on: keys. A common use case of join is with a single join column, so we should accept the use of a single join argument.

keys_df.join({other: target_df, on: 'keys', how: 'inner'});

vs

keys_df.join({other: target_df, on: ['keys'], how: 'inner'});

thomcom avatar Sep 01 '22 19:09 thomcom