Displaying 2 results from an estimated 2 matches for "someotherfram".
Did you mean:
someotherframe
2002 May 17
1
What is the most efficient way to assign to PARTS of objects in other frames/environments?
Can please someone familiar with the R internals explain on the following:
PR#1434 from r-bugs clarifies that
assign("a[1]", x, SomeOtherFrame)
or
assign("a$a", x, SomeOtherFrame)
will NOT assign to an object 'a' in the other frame BUT create a new object
called 'a[1]' resp. 'a$a'.
This leads to the following question: what is the most efficient way to
assign to PARTS of objects in other frames/en...
2002 May 17
0
What is the most efficient way to assign to PARTS of obje cts in other frames/environments?
...cts in other frames/environments?
>
>
> On Fri, 17 May 2002 oehl_list at gmx.de wrote:
>
> > Can please someone familiar with the R internals explain on
> the following:
> >
> > PR#1434 from r-bugs clarifies that
> >
> > assign("a[1]", x, SomeOtherFrame)
> >
> > or
> >
> > assign("a$a", x, SomeOtherFrame)
> >
> > will NOT assign to an object 'a' in the other frame BUT
> create a new object
> > called 'a[1]' resp. 'a$a'.
> >
> > This leads to the followin...