1

I am trying to join files using the following command:

join_all(dfs = datalist,by = "V1",type="left",match="all") 

The problem is that when I use type="full" it does not combine the files, but if I use type="left" it works. However, I need the fll data set.

Any ideas why or suggestions on another method?

user2300940
  • 2,355
  • 1
  • 22
  • 35
  • 2
    Please include the names of any packages you are using. `join_all` is not a base R function. – lmo Jun 19 '17 at 19:21

1 Answers1

1

It would be helpful if you could provide some reproducible code and the desired output.

It seems you are using the join_all function from the plyr package.

Another approach is to leverage the Reduce function in base R.

Check out this related SO post.

R: merging a lot of data.frames

D.sen
  • 938
  • 5
  • 14