rapidsai / node

GPU-accelerated data science and visualization in node

Home Page:https://rapidsai.github.io/node/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

thomcom opened this issue · 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'});