Re: [R] Putting all elementes of the list in an enviorment of a function

2005-08-02 Thread Ales Ziberna
Tuesday, August 02, 2005 11:25 AM Subject: Re: [R] Putting all elementes of the list in an enviorment of a function > On Tue, 2 Aug 2005, Ales Ziberna wrote: > >> Thank you! >> >> However, this does not do exacty what I want. I would like somehow to >> modify onl

Re: [R] Putting all elementes of the list in an enviorment of a function

2005-08-02 Thread Prof Brian Ripley
uot;Ales Ziberna" <[EMAIL PROTECTED]> > Cc: "R-help" > Sent: Tuesday, August 02, 2005 10:35 AM > Subject: Re: [R] Putting all elementes of the list in an enviorment of a > function > > >> ?with will help you. >> >> I would avoid using '

Re: [R] Putting all elementes of the list in an enviorment of a function

2005-08-02 Thread Ales Ziberna
Ripley" <[EMAIL PROTECTED]> To: "Ales Ziberna" <[EMAIL PROTECTED]> Cc: "R-help" Sent: Tuesday, August 02, 2005 10:35 AM Subject: Re: [R] Putting all elementes of the list in an enviorment of a function > ?with will help you. > > I would avoid using &#x

Re: [R] Putting all elementes of the list in an enviorment of a function

2005-08-02 Thread Prof Brian Ripley
?with will help you. I would avoid using 'list' as a function name, as it will confuse people and might confuse R too. On Tue, 2 Aug 2005, [iso-8859-2] Alea }iberna wrote: > Hello! > > I have two functions. > > The first one prepares the arguments for the second one. What is the best > way to p

[R] Putting all elementes of the list in an enviorment of a function

2005-08-02 Thread Aleš Žiberna
Hello! I have two functions. The first one prepares the arguments for the second one. What is the best way to put all resoults of the first one into the second one? I tried attach, however the object in the "main" enviorment have a priority over the ones in list. An example is at the end. Tha