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