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?