Suppose my Environment contains the following objects (dummy names):
abcd # numeric
efgh # dataframe
ijkl # matrix
mnop # character
My goal : Put them in a list automatically, without typing:
mylist<-list(abcd,efgh,ijkl,mnop)
Is there a function that can do this? More precisely, it would be the opposite of the list2env
function.