Hi,
I have four tables I would like to join.
When I want to join two tables, I use dplyr and the command
NewDataFrame <-left_join(Table1, Table2, by="SharedColumn")
I tried with four tables
NewDataFrame <-left_join(Table1, Table2, Table3, Table4, by="SharedColumn")
But of course it does not work.
Is there an easy or more clean approach other than combining table1 and table2, then table 3, then table4?
Thank you in advance.