rapidsai / rapidsai/node

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

Open
#426 0 comments 1 reaction 1 assignee View on GitHub

@thomcom is already working on this.

Since Sep 1, 2022.

Dominant language
TypeScript
Stars
211
Forks
29
Avg merge
17h 30m
Merged PRs (30d)
1

Description

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'});

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.