randrescastaneda / joyn

joyn provides a set of tools to analyze the quality of merging (i.e., joining) data frames. It is a JOY to join with joyn
https://randrescastaneda.github.io/joyn/
Other
9 stars 4 forks source link

Add dplyr joins #30

Closed zander-prinsloo closed 10 months ago

zander-prinsloo commented 11 months ago

Adding dplyr joins, namely

  1. left_join
  2. right_join
  3. full_join
  4. inner_join

The functions take in the standard dplyr arguments. Note that the na_matches argument in dplyr is currently not active. dplyr users have the option of matching rows when keys are NA by keeping the default as na_matches = "na" or by changing the default argument to prevent NAs from matching, setting na_matches = "never". In these dplyr joins, only na_matches = "na" is currently active.

randrescastaneda commented 10 months ago

Task linked: CU-868708xeh Merge dplyr functions into dev