search for: updated_test

Displaying 3 results from an estimated 3 matches for "updated_test".

2017 Sep 22
0
update numeric values of list with new values...
Solved it: test <- list(a=1,b=2,c=3) new <- c(4,5,6) hold <- as.list(new) updated_test <- replace(test,c(1:3),hold) $a [1] 4 $b [1] 5 $c [1] 6 mean.parms <- as.list(mean.parms) mm.parms <- replace(far.parms,c(1:length(far.parms)),mean.parms) On 9/22/2017 10:34 AM, Evan Cooch wrote: > Suppose I have the following: > > test <- list(a=1,b=2,c=3) > > I...
2017 Sep 22
2
update numeric values of list with new values...
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
2017 Sep 22
1
update numeric values of list with new values...
...ings into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Fri, Sep 22, 2017 at 7:51 AM, Evan Cooch <evan.cooch at gmail.com> wrote: > Solved it: > > test <- list(a=1,b=2,c=3) > new <- c(4,5,6) > > hold <- as.list(new) > updated_test <- replace(test,c(1:3),hold) > > $a > [1] 4 > > $b > [1] 5 > > $c > [1] 6 > > > > mean.parms <- as.list(mean.parms) > > mm.parms <- replace(far.parms,c(1:length(far.parms)),mean.parms) > > > On 9/22/2017 10:34 AM, Evan Cooch wrote: >...