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?
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)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With