Unlist a list of dataframes

r

Solution

Use `list2env` it is specially designed for this:

From a named list x, create an environment containing all list components as objects, or “multi-assign” from x into a pre-existing environment.

So here :

list2env(mylist ,.GlobalEnv)

Problem

This is possibly a really simple question. I have a list of dataframes (df1, df2.... dfn), i.e. each element of the list is a dataframe. So basically, the list was created like this: ``` mylist = list(df1, df2,...., dfn) ``` But how do I do the reverse, that is unlist so that df1, df2, etc. reside separately in the workspace?

Original source