Suppose I have the following:

test <- list(a=1,b=2,c=3)

I also have a vector (or list, or something else...) with new numbers

new <- c(4,5,6)

What I'm trying to figure out is how to take the list, and update the numbers from {1,2,3} to {4,5,6}

So, in the end,I want the 'update' test list to look like

(a=4,a=5,a=6)

I tried a bunch of obvious things I know about 'replacing' things (without success), but the problem in this instance seems to be the fact that the list contains elements that are expressions (a=1, a=2,...), while the new vector is simply a set of numbers.

So, I want to change the numbers in the list, but retain the character parts of the expressions in the list (I need to have the list of expressions as is for other purposes).

Doable?

Thanks in advance...

______________________________________________
R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see
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