Dear R-users,

I would like to assign elements to a list in the following manner:
mylist <- list(a = a, b = b, c = c)

To do this I tried
myexpr <- expression(a = a, b = b, c = c)
mylist <- list( eval(myexpr) )

It ends up by overwriting a when b is assigned and b when c is assigned. Additionally the element of the list does not have a name.
Could you tell me why this is the case?
Thank you very much in advance!

Best regards,
Nils

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to