I\'m sorry to ask this question. I\'m very noob with R. I know there is a lot of threads which are related to the very same problem. I understood that we cannot export a tab
You can write your For loop to individually store dataframes from a list:
allocation = list() for(i in 1:length(allocation)){ write.csv(data.frame(allocation[[i]]), file = paste0(path, names(allocation)[i], '.csv')) }