If you have a list but you want each element of the list to be it\'s own separate element in the global environment e.g.
list
alist <- list( c(1,2
If your elements aren't named, then you can do mapply with assign:
mapply
mapply(assign, list("a","b"), alist, MoreArgs=list(envir=.GlobalEnv)) > ls() ## [1] "a" "alist" "b"
But what Roland said.