Suppose I have a named list x:
x <- list(a = 1, b = 2)
How to upload content xto a global environment so that I can access aand bfrom a global environment ?:
a
b
(why am I doing this: actually, xderived from a file .matcreated by matlab. This is more like a file .Rdata)
source
share