I have around 800 data frames(a1,a2,a3...a800) in R and all of them have the same number of columns and column names.I want to a left join table a1 with rest of the 799 tables and store it in an object. Similarly, left join table a2 with the rest of them and store it another object and so on. I am unable to proceed with this! If anyone could help me will be great.
Here is an example Table a1: Names ID Time X 1 2 Y 2 6 Z 3 5 K 4 8
Table a2; Names ID Time P 11 8 Q 12 9 R 10 7 Y 2 6 and so on.. I want to join by ID Column. And I have 800 tables!