Extract data frames from a list of data frames.

I managed to import several text files to a list of dataframes using lapply, normally I can manage the data frames inside the list in order to select certain columns and plot them with matplot.
However, now I need to extract all the individual data frames from the list to dataframes:

df1<-List[[1]]
df2<-List[[2]]
.
.

But I do not want to do it manually, since the number of DF changes every time I run a model. I have tried with a loop with failed to do so.

This article, on how-to-approach this, may be quite helpful in both understanding and implementing it for your situation:

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.