0

Export_list is a list of dataframes, and for some reason it doesn't work well in this format for my other code.

for (i in 1:length(export_list)) {
  assign(paste0("df", i), as.data.frame(export_list[[i]]))
}

The code above creates new dataframes based off element in the list. How do I make it so I can have a list of those data frames in that loop?

0 Answers0