I have a list of many data frames that I want to merge (not merely rbind, for which plyr's rbind.fill would do the job in a stroke) into a single, combined data frame. Because the merge command only works on 2 data frames, I turned to the Internet for ideas. I got this one from here, which worked perfectly in R 2.7.2, which is what I had at the time:
merge.rec <- function(.list, ...){
if(length(.list)==1) return(.list[[1]])
Recall(c(list(merge(.list[[1]], .list[[2]], ...)), .list[-(1:2)]), ...)
}
And I would call the function like so:
df <- merge.rec(my.list, by.x = c("var1", "var2"), by.y = c("var1", "var2"), all = T, suffixes=c("", ""))
But in any R version after 2.7.2, including 2.11 and 2.12, this code failes with the following error:
Error in match.names(clabs, names(xi)) :
names do not match previous names
(Incidently, I see other references to this error elsewhere with no resolution).
Is there a way I can spruce up this code snippet to work on modern R versions, or solve this problem in some other way? I hate to keep having to boot up my old R located on only 1 of my machines to do this one line of code.
You can see replication code with my real data here.
UPDATE: Just to be more specific, I have data frames in the list that differ in terms of their number of rows and columns, but they all share the key variables (which I've called "var1" and "var2" above).
UPDATE 2: Here's what the data actually look like if that's more helpful. I have a list, 19 data frames long. The first 3 data frames are empty, but have column names.
> my.list[[3]]
[1] senate1995 name matchname party st district chamber votes.year
<0 rows> (or 0-length row.names)
Data frames 4-14 are full. As an example, here's the fourth:
> my.list[[4]][1:3,1:10]
senate1996 name matchname party st district chamber v2 v3 v4
64177 1 Algiere ALGIERE 200 RI 026 S 9 9 1
64196 1 Alves ALVES 100 RI 019 S 1 1 9
64245 1 Badeau BADEAU 100 RI 032 S 1 1 9
And here's the fifth:
> my.list[[5]][1:3,1:10]
senate1997 name matchname party st district chamber v2 v3 v4
64178 1 Algiere ALGIERE 200 RI 026 S 6 1 1
64197 1 Alves ALVES 100 RI 019 S 1 9 9
64246 1 Badeau BADEAU 100 RI 032 S 9 1 9
Data frames 15-19 are empty but look just like the first 3.
I match on "matchname", "party", "st", "district", and "chamber". So in this example, I want to merge these people together such that the output data frame will have one line for each of them, but they have multiple variables: senate1996, senate1997, and renamed v2 v3 v4. That old code I used, with Recall, did just that ... but only on R 2.7.2!
UPDATE 3: I have posted replication code on Pastebin that replicates this failure, along with real data that is accessed online from the code.
Thanks!