I am hoping to merge a number of data frames, one is called A, the other is called Comments_[[i]], and i ranges from 1 to 36. The name of the common column is called "Item.i.Q3", again i ranges from 1 to 36.
without a loop l I will do the following 36 times (changing i to a number ranged from 1 to 36) :
outcome <- merge(A , Comments_[[i]], by="Item.i.Q3", all= TRUE)
Was wondering if I can build a loop so I don't have to do it 36 times? Thanks :)