tidy-finance / website

This repository hosts the source code for the website tidy-finance.org
https://tidy-finance.org
Other
82 stars 47 forks source link

Update *_join() to use join_by() instead of by #87

Closed voigtstefan closed 8 months ago

voigtstefan commented 8 months ago

Update of all *_join operations to use join_by() instead of by =. I followed the proposed convention in https://www.tidyverse.org/blog/2023/08/teach-tidyverse-23/#improved-and-expanded-_join-functionality and for succinctness, avoided the argument name altogether

penguins |>
  left_join(islands, join_by(island == name))