1

I have a file list that I would like to join, but the function does not accept type="full", only type="left". Anyone experenced similar problems?

datalist = lapply(file_list, function(x){read.csv(file=x,header=F,sep = "\t")})

joined <- full_join(dfs = datalist,by = "V1",type="full",match="all")  

Using type="full" it does not join anything, only print the first datafile

Axeman
  • 32,068
  • 8
  • 81
  • 94
user2300940
  • 2,355
  • 1
  • 22
  • 35
  • I think you are mixing up `plyr::join_all` and `dplyr::full_join`. – Axeman Jun 20 '17 at 14:23
  • Also see [here](https://stackoverflow.com/questions/8091303/simultaneously-merge-multiple-data-frames-in-a-list) for a possible duplicate. – Axeman Jun 20 '17 at 14:30
  • No, dont think so. join_all should have a type="full" parameter – user2300940 Jun 20 '17 at 15:31
  • Yeah look at your code, it says `full_join`, not `join_all`....... You only have `join_all` in your title. Also your title mentions `plyr`, but your question is tagged `dplyr`. – Axeman Jun 20 '17 at 15:46

0 Answers0